Question: 1) consider the following statements. stacktype stack; int x,y ; show what is the output by the following segment of code. stack.initalize(); x=1; y=3; stack.push(1);

1) consider the following statements.

stacktype stack;

int x,y ;

show what is the output by the following segment of code.

stack.initalize();

x=1;

y=3;

stack.push(1);

stack.push(x);

stack.push(x-5);

stack.pop(y);

stack.push(x+y);

stack.push(y+2);

stack.push(3);

stack.pop(x);

cout<<"x="<

cout<<"y="<

while (stack.isemptystack())

(

stack.pop(y);

cout<

)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!