#include #include using namespace std; int main() { const char *const english[] = { //constant in 2 out of 2 ways "Monday", "Tuesday", "Wednesday" }; const char *const spanish[] = { "Lunes", "Martes", "Miercoles" }; const char *const *language = english; //constant in 2 out of 3 ways cout << "The first days of the week are " << language[0] << " and " << language[1] << ".\n" << "The first characters of the first day are " << language[0][0] << " and " << language[0][1] << ".\n\n"; language = spanish; cout << "The first days of the week are " << language[0] << " and " << language[1] << ".\n" << "The first characters of the first day are " << language[0][0] << " and " << language[0][1] << ".\n"; return EXIT_SUCCESS; }