Vidyalelo
C++ Programming · Q900

C++ miscellaneous

Programming · C++ Programming · question 900

Q900

What will be the output of the following C++ code? #include #include #include using namespace std; int main() tuple tp; tp = make_tuple("Hello", 4, 'c'); return 0;

A.
Nothing is printed
B.
Compile-time error
Answer
C.
Run-time error
D.
Exception occurs

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board