const char features[] = {"\n" "C_FEATURE:" #if __INTEL_COMPILER >= 1110 "1" #else "0" #endif "c_function_prototypes\n" "C_FEATURE:" #if __INTEL_COMPILER >= 1110 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L "1" #else "0" #endif "c_restrict\n" "C_FEATURE:" #if (__INTEL_COMPILER > 1500 || (__INTEL_COMPILER == 1500 && __INTEL_COMPILER_UPDATE > 1) ) && (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L || defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L && !defined(_MSC_VER)) "1" #else "0" #endif "c_static_assert\n" "C_FEATURE:" #if __INTEL_COMPILER >= 1110 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L "1" #else "0" #endif "c_variadic_macros\n" }; int main(int argc, char** argv) { (void)argv; return features[argc]; }