Given the following array declaration, which line of code would
display the value 88?

int a[ 8 ] = { 42, 25, 12, 37, 75, 67,
88, 50 };


a. cout << a[ 6 ] << endl;
b. cout << a[ 7 ] << endl;
c. cout << a[ 88 ] << endl;
d. cout << a[ '88' ] << endl;