// Abstract Data Types Demo
// Using a stack
// Marc Chee, April 2019
#include <stdio.h>
#include "stack.h"
int main(void) {
Stack deck = stackCreate();
int card = 42;
printf("Pushing %d on top of the deck.\n", card);
stackPush(deck, card);
card = 37;
printf("Pushing %d on top of the deck.\n", card);
stackPush(deck, card);
card = 13;
printf("Pushing %d on top of the deck.\n", card);
stackPush(deck, card);
printf("Taking %d off the top of the deck.\n", stackPop(deck));
printf("Taking %d off the top of the deck.\n", stackPop(deck));
printf("Taking %d off the top of the deck.\n", stackPop(deck));
}
Resource created Tuesday 14 April 2020, 08:35:18 PM.
file: main.c