Question: Suppose you are given a variable declared as stack and its size is 2 5 . Using that stack as the actual parameter, you call

Suppose you are given a variable declared as stack and its size is 25.Using that stack as the actual parameter, you call function pbelow.What is the size of the stack after function p finishes executing?
void p(stack&s){ if (s.size()>0){ char my_char = s.top(); s.pop(); p(s); cout << my_char; } return; }

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 Programming Questions!