Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Formatting Output in C

  • 31-10-2006 10:03am
    #1
    Registered Users, Registered Users 2 Posts: 9,844 ✭✭✭


    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,844 ✭✭✭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,844 ✭✭✭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