https://github.com/rcasanovan/linked-stack
Linked stack using C language
https://github.com/rcasanovan/linked-stack
c c-language linked-stack pointers stack
Last synced: 8 months ago
JSON representation
Linked stack using C language
- Host: GitHub
- URL: https://github.com/rcasanovan/linked-stack
- Owner: rcasanovan
- License: apache-2.0
- Created: 2019-05-04T20:55:22.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-12T20:08:02.000Z (almost 7 years ago)
- Last Synced: 2025-01-18T01:43:48.251Z (about 1 year ago)
- Topics: c, c-language, linked-stack, pointers, stack
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Linked stack using C language
## Steps
* Download [gcc](https://gcc.gnu.org/install/binaries.html).
* Open the terminal.
* Use the following comand in order to compile the .c file: ***gcc -Wall -Werror -o exit linkedStack.c***
* Run the executable file using the following comand: ***./exit***
* Enjoy.