/* File: define.c

   Let's see what really happens when
   you use #define in a C program.
*/

#define PI 3.14159
#define MESSAGE "Hello World\n"

main() {
   int x ;

   printf(MESSAGE) ;
   x = PI * 4 ;
   printf("PI = %g, x = %g\n",PI, x) ;
}

