Declares a pointer and then outputs its value without first assigning
#include <iostream> using namespace std; int main () { int* intPointer; cout << "The value of intPointer is " << intPointer << endl; return 0; }