Vidyalelo
C++ Programming · Q434

C++ miscellaneous

Programming · C++ Programming · question 434

Q434

What will be the output of the following C++ code? #include #include using namespace std; int main () pair p; p = make_pair(1,2); cout<<"Pair(first,second) = ("<<p.first<<","<<p.second<<") "; return 0;

A.
Pair(first,second) = (1,2)
Answer
B.
Compile-time error
C.
Run-time error
D.
Assignment is not correct

Answer: Option A

Solution

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