Beginner
C++
Q7 / 100
What is a pointer in C++?
Correct! Well done.
Incorrect.
The correct answer is A) A variable that stores a memory address
A
Correct Answer
A variable that stores a memory address
Explanation
A pointer stores the memory address of another variable. Declared as int* ptr; and dereferenced with *ptr.
Progress
7/100