🎴 Flashcard Mode
C++ Fundamentals
Card1 / 25
Mastered0
Review0
QuestionClick to flip
A pointer is
AnswerClick to flip back
A
a variable for storing address
💡 Explanation:
A pointer in C/C++ is a variable that stores the memory address of another variable. It does not store the data itself, but rather the location where the data resides.