Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

Formatting Output in C

  • 31-10-2006 11:03AM
    #1
    Registered Users, Registered Users 2 Posts: 9,845 ✭✭✭


    Hi folks,

    Just a quick question. Are there any other ways apart from using \n and \t for formatting my C Programs to make them look all fancy?? :p


Comments

  • Registered Users, Registered Users 2 Posts: 2,082 ✭✭✭Tobias Greeshman


    I presume you mean the output flag specifiers in printf ( )?

    Here's a list of some of them.


  • Registered Users, Registered Users 2 Posts: 9,845 ✭✭✭py2006


    silas wrote:
    I presume you mean the output flag specifiers in printf ( )?

    Here's a list of some of them.

    hmm, not sure! You know the way you can use \t for a tab indent and \n to go to the next line etc


  • Registered Users, Registered Users 2 Posts: 2,082 ✭✭✭Tobias Greeshman


    Yes they're escape sequences shortcuts for various ascii codes.

    Here's a list.

    What way do you want to format you're output, the printf flags sound like what you're after.


  • Registered Users, Registered Users 2 Posts: 9,845 ✭✭✭py2006


    silas wrote:
    Yes they're escape sequences shortcuts for various ascii codes.

    Here's a list.

    What way do you want to format you're output, the printf flags sound like what you're after.

    That seems to be them alright! I just want to make things look a bit neater on screen. Nothing specific.


Advertisement