Name: Anonymous 2009-02-08 17:37
Why is it bad?
#include <iostream>
using std::cout;
using std::endl;
int main() {
cout << "Testing bad()" << endl;
cout << cout.bad() << endl;
return 0;
}