Newlines
Code Examples
Hello in C++
Identifiers
printf("One\n Two\n Three\n");
Prints two lines.
printf("First part");
printf("Second part\n");
Prints one line.
\n \f \t . . .
Others
Hello in C++
Identifiers