/* File: hello2.c A slightly more complicated "Hello World" program. It is a good idea to include English comments that describe the purpose of a program. */ #include int main() { printf("Hello World\n") ; printf("My name is Marvin the Paranoid Android.") ; // no \n printf("I have brains the size of a planet.\n") ; return 0 ; }