What is output by the following code? int a[] = { 1, 2, 3, 4, 5, 6 }; std::cout << (a+1)[3] << std::endl; Select one: 5
Posted: Mon May 02, 2022 12:08 pm
What is output by the following code? int a[] = { 1, 2, 3, 4, 5, 6 }; std::cout << (a+1)[3] << std::endl; Select one: 5 4 O 6 O 3