Escape Sequence - Newline (line feed)

#include
main( )
{
    printf("This is a line of text to output.\n");
    printf("And this is another ");

    printf("line of text.\n\n");
    printf("This is the third line.\n");
    system("pause");
    return 0;
}

0 comments:

Post a Comment