What will be the output of the following C++ code?
#include <iostream>
#include <string>
#include <tuple>
using namespace std;
int main()
{
tuple <int, char, string> tp;
tp = make_tuple(4, '1', "Hello");
cout<<tuple_size<decltype(tp)>::value;
return 0;
}
#include <iostream>
#include <string>
#include <tuple>
using namespace std;
int main()
{
tuple <int, char, string> tp;
tp = make_tuple(4, '1', "Hello");
cout<<tuple_size<decltype(tp)>::value;
return 0;
}A. 11
B. 5
C. 4
D. 3
Answer: Option D

Join The Discussion