0
2.1kviews
Write ADT for stack. Give application of stack
1 Answer
written 6.2 years ago by | • modified 6.2 years ago |
Stack is represented as follows
struct stack
{
int data[SIZE];
int top;
}s;
Where variable SIZE is used to specify the length of stack and its declared as constant