Pinapple5740 Pinapple5740 18-01-2024 Computers and Technology contestada Given the following array declaration, which line of code woulddisplay 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;