// CS210 F'03 Exam 1 // Question 13 // #include using namespace std; int main (void) { int the(12),end(15); int * thePtr = &the; int * endPtr = &end; char * names[4] = {"Ray", "Sarah", "Stephen", "Mary"}; cout << names[2] << endl; cout << sizeof(names) << endl; cout << names[3][2] << endl; cout << *endPtr - *thePtr << endl; } // output // Stephen // 16 // r // 3