#include #include #define DEBUG_ON 0 int main(void) { #if DEBUG_ON == 1 printf("Debug mode - about to do something\n"); #else printf("Running in standard mode"); #endif return 0; }