C #ifdef Directive

#include <stdio.h>

#define DEBUG  // Comment or uncomment this line to toggle DEBUG mode

int main() {
    #ifdef DEBUG
        printf("Debugging information\n");
    #else
        printf("Normal mode\n");
    #endif

    return 0;
}