#include using namespace std; int main () { unsigned short int a = 8; unsigned short int b = 4; unsigned short int * iPtr = &a; cout << "The integer variable a currently stores the value: "; cout << a << endl; *iPtr = a * b; cout << "The integer variable a currently stores the value: "; cout << a << endl; return 0; }