//preprocessor
#include <stdio.h>
#define limit 100
void main(){
#ifdef limit
printf("LIMIT IS DEFINE\n");
printf("IF DEF is working\n");
#else
printf("LIMIT IS NOT DEFINE\n");
printf("IF DEF is NOT working\n");
#endif
printf("Normal Function \n");
}
To embed this project on your website, copy the following code and paste it into your website's HTML: