What is the output from the following sequence of stack operations? (please include the code and .exe)
See attached file.
stack intStack;
int x, y = 3;
intStack.push(8);
intStack.push(9);
intStack.push(y);
x = intStack.top();
intStack.pop();
intStack.push(18);
x = intStack.top();
intStack.pop();
intStack.push(22);
while (!intStack.empty())
{ y = intStack.top();
intStack.pop();
cout <}
cout <
Attachment:- stack operation.txt