/* File: hello1.c This version can be compiled using gcc -Wall hello1.c and not produce any warnings. */ #include int main() { printf("Hello World\n") ; return 0 ; }