#include int main(void){ #ifdef __STDC_VERSION__ printf("%ld\n", __STDC_VERSION__); #else puts("C89"); #endif return 0; }