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 = {"Hello", 1, 's'};
return 0;
}
#include <iostream>
#include <string>
#include <tuple>
using namespace std;
int main()
{
tuple <int, char, string> tp = {"Hello", 1, 's'};
return 0;
}A. Nothing is printed
B. Compile-time error
C. Run-time error
D. Exception occurs
Answer: Option B

Join The Discussion