1.

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;
D. Tuple <type1, type2, type3> tp;
Answer» D. Tuple <type1, type2, type3> tp;


Discussion

No Comment Found