Computer Science, asked by 2019akcs2089f, 7 days ago

A stack is to be implemented using an array. The associated declarations are: int stack
[100]; int top = 0; Give the statement to perform push operation.

Answers

Answered by debasish2cse
0

Answer:

top++

Explanation:

when an element is pushed to the stack the top value get incremented that is top++

Similar questions