/* c99: example of macro useful to identify the standard used by the compiler */ #include int main() { printf("__STDC__: %d __STDC_VERSION__: %ld\n", __STDC__, __STDC_VERSION__); return 0; }