80.1k views
1 vote
A string array:

A. Stores an actual string in each of its elements.
B. Can only provide access to strings of a certain length.
C. Is actually an array of pointers.
D. Is always less memory efficient than an equivalent double-subscripted array.

User NSGod
by
4.7k points

1 Answer

6 votes

Answer:

C :Is actually an array of pointers

Step-by-step explanation:

Here, we want to choose which of the options fit best as the answer to the question.

The correct answer here is that the string array is an array of pointers

A string array is used to store string of characters. The term array is an indication of the fact that it is a collection

User Clx
by
4.6k points