Vidyalelo
C++ Programming · Q333

C++ miscellaneous

Programming · C++ Programming · question 333

Q333

Which of the following is the correct way of declaring a tuple?

A.
tuple tp<type1, type2, type3>;
B.
tuple tp = new tuple<type1, type2, type3>;
C.
tuple <type1, type2, type3> tp;
Answer
D.
None of the above

Answer: Option C

Solution

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