What is output-sequence of stack operations


Discuss teh below:

Q: What is the output from the following sequence of stack operations?

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();
intStackpush(22);
while (!intStack.empty())
{ y = intStack.top();
intStack.pop();
cout << y << " ";
}
cout << x << endl;

Solution Preview :

Prepared by a verified Expert
Data Structure & Algorithms: What is output-sequence of stack operations
Reference No:- TGS01937563

Now Priced at $20 (50% Discount)

Recommended (91%)

Rated (4.3/5)