C/C++ Arena

Step 3 of 5

Several lines

Each printf call continues where the last one stopped. Only \n moves to a new line, so these two calls:

printf("Ready, ");
printf("set\n");

print Ready, set on a single line.

Your turn: write a program that prints these three lines:

Counter-Strike
is a game
about aim

Previous: Printing your own text Next: Escape sequences