An open API service indexing awesome lists of open source software.

https://github.com/bzdgn/c-stack-implementation

A Simple Stack Implmentation on C
https://github.com/bzdgn/c-stack-implementation

c data-structure data-structures data-structures-algorithms datastructure datastructures stack

Last synced: 26 days ago
JSON representation

A Simple Stack Implmentation on C

Awesome Lists containing this project

README

        

A simple stack implementation for C

I'm on my C recap after severals years. This is a simple, primitive implementation of Stack with basic features and trivial functions.

Stack features;
***************
push
pop
printStack

Sample Output from Main.c;
**************************
Stack: 45 30 15
Popped element: 45
Popped element: 30
Popped element: 15

Compiled with GCC Version: gcc (GCC) 5.2.0
On Windows 10