#Meta-Wlp: #Macro: TITLE wlp: Learn C (I) p. 6
#include<stdio.h> int main(){ printf("Hello world!") ; printf("Good-bye cruel world!\n") ; }And this program, how does it format its output? #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 Good-bye cruel world! on a second line. #: The program does not work. It breaks the computer. #: