00001 #include <iostream> 00002 #include <iomanip> 00003 00004 using namespace std; 00005 00006 int main() 00007 { 00008 cerr << "__GNUC__ = " << __GNUC__ << endl; 00009 cerr << "__VERSION__ = " << __VERSION__ << endl; 00010 cerr << "__GNUC_MINOR__ = " << __GNUC_MINOR__ << endl; 00011 00012 #if __GNUC__==3 && __GNUC_MINOR__==1 00013 cerr << "OK\n"; 00014 #else 00015 cerr << "NOT OK" << endl; 00016 #endif 00017 00018 return 0; 00019 }