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
- Host: GitHub
- URL: https://github.com/bzdgn/c-stack-implementation
- Owner: bzdgn
- Created: 2017-02-12T21:17:18.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-12T21:32:36.000Z (about 8 years ago)
- Last Synced: 2025-02-03T09:47:46.877Z (3 months ago)
- Topics: c, data-structure, data-structures, data-structures-algorithms, datastructure, datastructures, stack
- Language: C
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
printStackSample Output from Main.c;
**************************
Stack: 45 30 15
Popped element: 45
Popped element: 30
Popped element: 15Compiled with GCC Version: gcc (GCC) 5.2.0
On Windows 10