This repository contains files for different stack implementations like push, pop, and listing all stack elements.
#arrayIsFull.c this file contains codes to check if the stack is full, to avoid stack overflow
#arrayIsEmpty.c this file contains codes to check if the stack is empty, to avoid stack underflow
#arrayPush.c this file contains codes to push/add an element to a stack.
#arrayPop.c this file contains codes to pop/remove/delete an element to a stack.
#arrayDisplay.c This file contains codes to print out/display all stack elements.
#mainArray.c This file contains main function that controls the other function and it is the one to let the compile run others.
#combinedOperationsArray.c This file contains all functions for performing all operations on stack implementated using an Array. This is the one you can use to check that all codes are doing right things.