In C, a pointer is a variable that stores the ________ of another variable.
- Address
- Function
- Size
- Value
In C, a pointer stores the address of another variable. Pointers are used to work with memory addresses, allowing you to access and manipulate the data stored at that location.
Loading...
Related Quiz
- What happens to a local variable when the function in which it is defined finishes executing?
- The ______ function in C can be used to change the position of the file pointer in a stream.
- What is the purpose of the 'switch' statement in C?
- In a program that processes 3D graphics, you need to calculate the distance between points in space. What concept would be useful in efficiently handling the coordinates of these points?
- What is a pointer in C programming?