Which of the following statements is not true about a two-dimensional array? You can't define and initialize it at the same time. You can use it with C strings if you need to access individual characters. You use two subscript operators to refer to its elements. It can be thought of as a table of rows and columns. Question 7 What is the value of the variable named word 1 after this code is executed? const int size ( =20 ); char word1[size] = "distinguish"; char word2[size] = "abilities"; strncpy (word1, word2, size - 1); distinguish distinguishabilitie distinguishabilities abilities
Question 6
Which of the following statements is not true about a two-dimensional array?
O You can't define and initialize it at the same time
O You can use it with C strings if you need to access individual characters
O You use two subscript operators to refer to its elements
O It can be thought of as a table of rows and columns
Question 7
What is the value of the variable named word1 after this code is executed?
const int size = 20;
char word2[size] = "abilities";
strncpy(word1, word2, size - 1);
O distinguish
O distinguishabilitie
O distinguishabilities
O abilities