What will be the output of the following C++ code?
#include <iostream>
#include <array>
using namespace std;
int main(int argc, char const *argv[])
{
array<int,5> arr1;
arr1.fill(5);
cout<<get<5>(arr1);
return 0;
}
#include <iostream>
#include <array>
using namespace std;
int main(int argc, char const *argv[])
{
array<int,5> arr1;
arr1.fill(5);
cout<<get<5>(arr1);
return 0;
}A. 5
B. Compile-time error
C. Run-time error
D. Segmentation fault
Answer: Option B

Join The Discussion