Multiple Choice
Given that p1 is a pointer, p1++
A) always causes a run time error
B) advances p1 by one unit of the type of variable to which p1 points
C) adds 1 to whatever p1 is pointing to
D) adds one element to the array that p1 is pointing to
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q26: Write the code that assigns to p1
Q27: You can assign an array to a
Q28: A pointer can be stored in an
Q29: If p1 and p2 are both pointers
Q30: In the statement cout << *p1;, the
Q32: Given that p1 is an integer pointer
Q33: The & operator is called the _
Q34: What is wrong with the following code
Q35: What is the output of the following
Q36: int *p1; declares a static variable.