1 Jul
2005
1 Jul
'05
11:13 a.m.
// Compiled (gcc 3.4.3) and run on a Red Hat system (2.4.20-8 kernel) with: // g++ -o feh feh.C && ./feh // /* Next line is sole output. feh! */ #include <iostream> int main(int argc, char **argv) { std::cerr << "feh!\n"; return 0; } ; ;