Mark the following statements as true or false.
a. In C++, pointer is a reserved word.
b. In C++, pointer variables are declared using the reserved word pointer .
c. The statement delete p ; deallocates the variable pointer p .
d. The statement delete p ; deallocates the dynamic variable to which p points.
e. Given the declaration
int list[10];int *p;the statement
p = list;is valid in C+ + .
f. Given the declaration
int *p;the statement
p = new int[50];dynamically allocates an array of 50 components of type int, and p contains the base address of the array.
g. The address of operator returns the address and value of its operand.
h. If p is a pointer variable, the statement p = p * 2; is valid in C+ + .
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.