What will be the output of the following C++ code?
#include <iostream>
#include <queue>
using namespace std;
int main ()
{
priority_queue<int> mypq;
mypq.push(10);
mypq.push(20);
mypq.push(15);
cout << mypq.top() << endl;
return 0;
}
#include <iostream>
#include <queue>
using namespace std;
int main ()
{
priority_queue<int> mypq;
mypq.push(10);
mypq.push(20);
mypq.push(15);
cout << mypq.top() << endl;
return 0;
}A. 15
B. 20
C. 10
D. Error
Answer: Option B

Join The Discussion