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
AnswerC.
10
D.
Error
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board