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

Formatting Output in C

Options
  • 31-10-2006 11:03am
    #1
    Registered Users Posts: 9,847 ✭✭✭


    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 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 Posts: 9,847 ✭✭✭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 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 Posts: 9,847 ✭✭✭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