An array of strings in C can be declared as a ________.
- 2D array
- grid
- matrix
- stack
An array of strings in C can be declared as a 2D array. Each row of the 2D array represents a string, and you can have multiple strings stored within the same data structure.
Loading...
Related Quiz
- What is the significance of using pointers to functions in C?
- In optimizing a recursive algorithm for calculating Fibonacci numbers, what concept can be applied to avoid redundant calculations?
- What is the difference between malloc and calloc in terms of initialization of the allocated memory?
- What is the significance of the SEEK_SET, SEEK_CUR, and SEEK_END constants in file handling?
- Double pointers are often used in C to create a(n) ________ of pointers.