#include int main() { #ifdef NDEBUG printf("Non-debug\n"); #else printf("Debug\n"); #endif return 0; }