// Check uninitialized pointer.. // Michael Rothstein // (date) #include using std::cin; using std::cout; using std::endl; int main(){ int *p; if ( p == NULL ){ cout << "p is NULL\n"; } else { cout << "p is not NULL\n"; } }