int *ptrInt = # //address of num will be assign to ptrInt variable
int **ptr = &ptrInt; // address of ptrInt will be assign to ptr variable
cout << num << endl; //display the original value of num
*ptrInt = 10; //use the dereference operator to change the value of the variable num
cout << num << endl; //display the new value of variable num
cout << ptrInt << endl; //display the address of variable num
cout << *ptrInt << endl; //display the value of variable num