Contact: aviboots(AT)netvision.net.il
37,088 questions
48,466 answers
573 users
#include <stdio.h> int main() { #if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201710L) printf("Compiler is C17"); #else printf("Compiler is not C17"); #endif return 0; } /* run: Compiler is C17 */