Vidyalelo
C++ Programming · Q935

C++ miscellaneous

Programming · C++ Programming · question 935

Q935

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"); cout ::value; return 0;

A.
11
B.
5
C.
4
D.
3
Answer

Answer: Option D

Solution

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