#ITE-6201
Awesome StudentQuestion • Data Structures and Algorithm Analysis

Given the following code which contains THREE pushes and ONE POP, what will be output of the stack?stack<int> s;spush(1);spush(2);spush(3);cout<<spop;

Answer

12