/* Exercise 1.1 in _The C Programming Language_. Leave out different parts of the "hello, world" program to see what error messages appear. (The program works just fine if I leave out #include .) 11/12/01 */ #include main() { printf("hello, world\n"); }