#Meta-Wlp: #Macro: TITLE wlp: Learn C (I) p. 5
#include<stdio.h> int main(){ printf("Hello world!\nGood-bye cruel world!\n") ; }What about those \n, what do they mean? For instance, what does this program print? #Shuffle: none $PAGE$-A $PAGE$-B $PAGE$-C Return to Learn C Introduction #: The program prints some text, all on one line. #: The program prints out: Hello world! on the first line, and Goodby cruel world! on a second line. #: The program does not work. It breaks the computer. #: