What is a pointer in C programming?
- A control structure in C
- A data type used for characters
- A function that returns values
- A variable that stores addresses
A pointer in C is a variable that stores the memory address of another variable. It's often used for dynamic memory allocation and accessing data indirectly.
Loading...
Related Quiz
- When declaring a variable in C, what does the 'static' keyword do to the variable's lifetime?
- What is the result of comparing two strings using the '==' operator in C?
- In C, what is the result of the expression (5 & 3)?
- In C, a structure is a user-defined data type that allows grouping of variables of ________ data types.
- How does the 'switch' statement compare to a series of 'if-else' statements in terms of efficiency?