----------------This function return the stack count--------------------------*/
| 78 | |
| 79 | /*----------------This function return the stack count--------------------------*/ |
| 80 | int stackCount(STACK* stack){ |
| 81 | return stack -> count; |
| 82 | } |
| 83 | |
| 84 | /*----------------This function prints all the element sof the Stack----------*/ |
| 85 | void display(STACK* stack){ |