#include #define DEBUG 1 int main() { #if defined (DEBUG) printf("DEBUG defined"); #else printf("DEBUG not defined"); #endif return 0; }