Spring 2000 COMP 122 Peter Smith

Example 1. Here is a simple "hello world" C program. #include main() {printf("hello world\n");} Notes on Example 1. 1. The #include line is a directive to the pre-processor to include the contents of system file stdio.h at this point. The file contains information needed … ................
................