Question:Sample Code
typedef char *monthTable[3];Referring to the code above, which of the following choices creates two monthTable arrays and initializes one of the two?
A monthTable(winter,spring={"March","April","May"});
B monthTable winter, spring;
C monthTable, winter, spring;
D monthTable, winter,spring={"March","April","May"};
E monthTable winter,spring={"March","April","May"};
+ AnswerE
+ Report