Question: 1. A pointer variable is declared using an asterik, *, between the data type and the variable. ? For example, ______ declares p to be
1. A pointer variable is declared using an asterik, *, between the data type and the variable. ? For example, ______ declares p to be a pointer variable of type int.?
_____________
-
2. In question 1, what does p point to?
_____________
-
3.
int *p;
int num;
Using the above statements, write a line of code that sets the value of p equal to the address of num.
_____________
-
4. What does the following statement accomplish:
p = new int[10]?
_____________
-
5.
Consider the following statement:
int* p, q;
This statement could lead to what type of misinterpretation?
_____________
-
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
