#include int main( void ) { int num = 12; int *nptr; nptr = # printf( "num holds %d and nptr points to %d\n", num, *nptr ); printf( "The address held in nptr is %p\n", nptr ); }