Switch to full style
C++ code examples
Post a reply

C++ Newlines

Thu Nov 13, 2008 1:49 pm

Create new lines in C++
cpp code
printf("One\n Two\n Three\n");  	 	Prints two lines.
printf("First part");
printf("Second part\n"); Prints one line.
\n \f \t . . . Others




Post a reply

Topic Tags

C++ Basics