Assume tht ''stack'' is the class described


Questions 4-6 ,Assume tht 'Stack' is the class described in this section with 'StackType' set to int and STACK_CAPACITY or myCapacity set to 5. Give the value of 'myTop' and the contents of the array referred to by 'myArray' in the Stack s afer the code segment is executed, or indicate why an error occurs.

4. Stack s; 5. Stack s;
s.push(123); s.push(111);
s.push(456); i = s.top();
s.pop(); s.push(222);
s.push(789); s.pop();
s.pop(); s.push(i);

6. Stack s;
for(int i = 0;i < 5;i++)
s.push(2*i);
s.pop();
s.pop();

Request for Solution File

Ask an Expert for Answer!!
Programming Languages: Assume tht ''stack'' is the class described
Reference No:- TGS087475

Expected delivery within 24 Hours