cppreference.com >
Escape Sequences
Constant Escape SequencesThe following escape sequences can be used to print out special characters.
An example of this is contained in the following code: printf( "This\nis\na\ntest\n\nShe said, \"How are you?\"\n" ); which would display This is a test She said, "How are you?" |