Question
What is the output of the following piece of code? #include <iostream> using namespace std; int main() { int array [] = {1, 2, 3, 4, 5); cout<<array[4]; return 0; }
Question image 1Question image 2Question image 3Question image 4Question image 5