Q943
What will be the output of the following C++ code? #include #include using namespace std; int main(int argc, char const *argv[]) array arr1; arr1.fill(5); cout (arr1); return 0;
A.
5
B.
Compile-time error
AnswerC.
Run-time error
D.
Segmentation fault
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board