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. char The_Days[7][5] = {“Sun”, “Mon”, “Tue”, “Wed”, “Thu”, “Fri”, “Sat” };

Computer Science & Information Technology

You might also like to view...

Multiple file open modes are specified to the fstream constructor by separating each open mode from the next with the bitwise inclusive or operator __________.

a. || b. ^ c. & .d |

Computer Science & Information Technology

The protocol that made the web possible was ______.

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

Computer Science & Information Technology

The recommended methodology for creating worksheets includes _____.

A. analyze requirements B. design solution C. validate design D. document solution

Computer Science & Information Technology

Pressing the Enter key at the terminal generates a newline character, ____.

A. \0 B. \e C. \r D. \n

Computer Science & Information Technology