// John Bent's CS 110 Hand-out 7 // Simple array of strings // // This program declares and initializes and then prints an array of strings. #include int main() { char month[12][10] = {"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}; for (int i = 0; i < 12; i++) { cout << endl << month[i]; } cout << endl << endl; return 0; }