/* The traditional first program in honor of Dennis Ritchie who invented C at Bell Labs in 1972. */ //#include //#define PI 3.14 int main(void) { printf("Hello!\n"); //print "Hello!" printf("%f\n", PI); #include #define PI 3.14 return 0; //indicates normal termination }