Q555
What will be the output of the following C++ code? #include #include #include using namespace std; int main() tuple tp; tp = make_tuple(4, '1', "Hello"); return 0;
A.
Nothing is printed
AnswerB.
Compile-time error
C.
Run-time error
D.
Exception occurs
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board