Cod sursa(job #316110)
Utilizator | Data | 18 mai 2009 15:23:06 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <cstdio>
#include <cassert>
#define GCC_VERSION (__GNUC__ * 10000 \
+ __GNUC_MINOR__ * 100 \
+ __GNUC_PATCHLEVEL__)
int main () {
#if GCC_VERSION > 40400
assert(false);
#endif
return 0;
}