// uninitialized pointer problem // mikhail nesterenko // 11/04/99 #include using std::cout; using std::endl; // what's wrong with this program? int main(){ int *p; p = 1; cout << *p << endl; }