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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!