Multiple choice

A pointer is

  1. the address of a variable

  2. the data type of an address variable

  3. a variable for storing address

  4. an indication of variable to be accessed next

Reveal answer Fill a bubble to check yourself
C Correct answer
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.