Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Use the following stucts for your stack and node */
- typedef struct Node_s {
- double data;
- struct Node_s* next;
- }Node_s;
- typedef struct Stack {
- int size;
- Node_s* top;
- }Stack;
- /* Declare your Stack functions here */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement