Consider the following statement:
int* p, q;
This statement could lead to what type of misinterpretation? (2)
Suppose that you have the declaration int *numPtr;. What is the difference between the expressions *numPtr and &numPtr? (3)
What is the output of the following C++ code? (2, 3)
int int1 = 26;
int int2 = 45;
int *int1Ptr = &int1;
int *int2Ptr = &int2;
*int1Ptr = 89;
*int2Ptr = 62;
int1Ptr = int2Ptr;
*int1Ptr = 80;
int1 = 57;
cout < int1=””>< ” =”” “=””>< int2=””><>
cout < *int1ptr=””>< ” =”” “=””>< *int2ptr=””><>