// CSE 374 17wi lecture 8 // Simple uses of preprocessor // (compile with gcc -E to see how the preprocessor rewrites the // original program) #include #define MAGIC 17 int main() { printf("hello\nthe magic number is %d\n", MAGIC); return 0; }