1 #include <stdio.h> 2 3 int main(void) 4 { 5 #ifdef DEBUG 6 printf("DEBUGGING\n"); 7 #endif 8 9 printf("Hello world!\n"); 10 11 return 0; 12 }