#include using namespace std;int main (){ int* intPointer; intPointer = NULL; cout << "The value of intPointer is " << intPointer << endl; return 0;}