Contact: aviboots(AT)netvision.net.il
39,855 questions
51,776 answers
573 users
#include <stdio.h> #if __STDC_VERSION__ == 199901L #define C99 #endif int main() { #ifdef C99 puts("C99"); #else puts("not c99"); #endif } /* run: C99 */
#include <stdio.h> int main() { printf("%ld\n", __STDC_VERSION__); if (__STDC_VERSION__ == 199901L) { puts("Code for C99"); } } /* run: 199901 Code for C99 */