/* This is the first program we will look at as a class */ /* It shows the general form of most simple C programs we will write */ /* Z. J. Wood Sept 2009 */ #include #include int main(void) { printf("hello class\n"); exit(0); }