This repository has been archived on 2023-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
VSMechatronics/Exercises/C20/FormattingDirective/formatting_directive_example.c

15 lines
229 B
C

#include <stdio.h>
#include <conio.h>
//#define DEBUG_ON 0
int main(void)
{
#ifdef DEBUG_ON
printf("Debug mode - about to do something\n");
#else
printf("Running in standard mode");
#endif
return 0;
}