A pointer in C holds the ________ of a variable.
- data value
- memory address
- size
- variable name
A pointer in C holds the memory address of a variable. It points to the location in memory where the variable's value is stored.
Loading...
Related Quiz
- How can you specify the starting value of an enumeration in C?
- You are developing a program to manage the seating arrangement in a movie theater with rows and columns. How would you represent the seats using arrays?
- Double pointers are often used in C to create a(n) ________ of pointers.
- What is the primary purpose of using pointers in a C function?
- In C, what is the result of the expression (5 & 3)?