Q695
What will be the output of the following C++ code? #include #include using namespace std; int main () priority_queue mypq; mypq.push(30); mypq.push(100); mypq.push(25); mypq.push(40); while (!mypq.empty()) cout << " " << mypq.top(); mypq.pop(); cout << endl; return 0;
A.
100 40 30 25
AnswerB.
100 40 30
C.
100 40
D.
100 30 25
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board