What will be the output of the following C++ code?
#include <iostream>
#include <utility>
using namespace std;
int main ()
{
pair <int,int> p(1,2);
cout<<"Pair(first,second) = ("<<p.first<<","<<p.second<<")\n";
return 0;
}
#include <iostream>
#include <utility>
using namespace std;
int main ()
{
pair <int,int> p(1,2);
cout<<"Pair(first,second) = ("<<p.first<<","<<p.second<<")\n";
return 0;
}A. Pair(first,second) = (1,2)
B. Compile-time error
C. Run-time error
D. Assignment is not correct
Answer: Option A

Join The Discussion