#include int main( void ) { int num = 12; int *nptr; nptr = # std::cout << "num holds " << num << " and nptr points to " << *nptr << '\n'; std::cout << "The address held in nptr is " << nptr << '\n'; }