In C, pointers can be used to pass ________ to a function.
- addresses
- constants
- data
- variables
In C, pointers can be used to pass addresses to a function. This allows functions to modify the original data.
Loading...
Related Quiz
- Why might you choose to use an enumeration instead of a series of #define statements for constants?
- While reviewing a C program, you come across a scenario where a pointer is freed but later used in the program. What issue could this lead to?
- What happens if the fopen function fails to open the specified file?
- What is the term used to describe the number of indices needed to select an element in a multidimensional array?
- When using dynamic memory allocation for arrays, which standard library function is used to release the memory that was previously reserved?