Which declares a 2-Dimensional array named The_Days and assigns it the days of the week?

A. char The Days[7][5] = {“Sun”, “Mon”, “Tue”, “Wed”, “Thu”, “Fri”, “Sat” };
B. string The_Days[ ][5] = {“Sun”, “Mon”, “Tue”, “Wed”, “Thu”, “Fri”, “Sat” };
C. char The Days[7][ ] = {“Sun”, “Mon”, “Tue”, “Wed”, “Thu”, “Fri”, “Sat” };
D. char The_Days[7][5] = {“Sun”, “Mon”, “Tue”, “Wed”, “Thu”, “Fri”, “Sat” };

D

Computer Science & Information Technology

You might also like to view...

The c-string to number conversion functions are in the _________ library

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

What does a statechart diagram depict?

What will be an ideal response?

Computer Science & Information Technology