Null Pointers : Pointer Primitive « Pointer « C++
- C++
- Pointer
- Pointer Primitive
Null Pointers

#include <iostream>
using namespace std;
int main ()
{
int* intPointer;
intPointer = NULL;
cout << "The value of intPointer is " << intPointer << endl;
return 0;
}
Related examples in the same category