Contact: aviboots(AT)netvision.net.il
40,954 questions
53,418 answers
573 users
#include <stdio.h> int main() { #if defined (__STDC__) #if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) printf("Compiler is C11"); #else printf("Compiler is not C11"); #endif #endif } /* run: Compiler is not C11 */