davis9102 davis9102 18-01-2024 Computers and Technology contestada What would the following lines of code print to the console? (Assumeall #includes have been taken care of)int main(){int my_array[4][3] = {{38,72,16}, {42,15,32},{24,47,63}, {5,73,68}};cout << my_array[2][1] << endl;return EXIT_SUCCESS;}