Vidyalelo
C++ Programming · Q115

C++ miscellaneous

Programming · C++ Programming · question 115

Q115

What will be the output of the following C++ code? #include #include using namespace std; int main () priority_queue mypq; mypq.push(10); mypq.push(20); mypq.push(15); cout << mypq.top() << endl; return 0;

A.
15
B.
20
Answer
C.
10
D.
Error

Answer: Option B

Solution

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