blob: e02c87a1ab9e7d4bd004db71e15072598d8027ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <stdio.h>
/* The C Programming Language, 2nd Edition
*
* Exercise 1-1: Run the "hello, world" program on your system. Experiment with
* leaving out parts of the program, to see what error messages you get.
*
* This is the typical first exercise. No need for me to putz with it.
*/
int main(void) {
printf("Hello world!\n");
return 0;
}
|