Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #define SIZE 200
- typedef struct
- {
- char v[SIZE];
- int top;
- } Stack;
- void push(Stack *S, char val);
- char pop(Stack *S);
- void init(Stack *S);
- char showtop(Stack *S);
- int empty(Stack *S);
- void StackPrint(Stack *S);
Advertisement
Add Comment
Please, Sign In to add comment