Enter your email address:
Representing stack data structure Array representation typedef struct stack{ int SArray[MAX_SIZE]; int top; }stack; Linked list representation typedef struct SNode{ int data; struct SNode *next; }SNode; typedef struct stack{ SNode *top; }stack;