When an array of strings is declared in C, what is it essentially an array of?
- Characters
- Floats
- Integers
- Pointers
When an array of strings is declared in C, it is essentially an array of pointers to character arrays (strings). Each element of the array is a pointer to a character array.
Loading...
Related Quiz
- Using a union can lead to efficient memory usage when you need to store different ________ at different times.
- In C, what is the effect of using pointers as function parameters with regards to pass by value and pass by reference?
- The size of a structure in memory is determined by the ________ of its members.
- When declaring a string literal in C, which character is automatically appended at the end?
- How does the 'ternary' operator (?:) work in C?