A list of strings can be stored within a two dimensional array. State whether the statement is True (or) False And Justify it
Answers
Answered by
0
"True. A list of strings can be stored within a 2D array.
char str[3][15] = {""aaa"",""bbb"",""ccc""};
This represents an array with array name 'str' and it is of two dimensions.
Here, 3 defines the number of strings that are stored in the array and the value 15 denotes the string length in total in the array.
Each string in the given array is represented and provided in ""double quotes”."
Similar questions