2 Compiling a C program - School of EECS

2.1 Compiling a simple C program. The classic example program for the C language is Hello World. Here is the source code for our version of the program: #include int. main (void) {printf ("Hello, world!\n"); return 0;} We will assume that the source code is stored in a file called ‘hello.c’. To compile the file ‘hello.c’ with ... ................
................