https://github.com/graphtylove/hangman_c
Simple terminal based hangman game written in C
https://github.com/graphtylove/hangman_c
c gcc hangman
Last synced: 4 months ago
JSON representation
Simple terminal based hangman game written in C
- Host: GitHub
- URL: https://github.com/graphtylove/hangman_c
- Owner: GraphtyLove
- Created: 2025-01-18T02:55:01.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-04-28T11:22:38.000Z (5 months ago)
- Last Synced: 2025-04-28T12:33:36.904Z (5 months ago)
- Topics: c, gcc, hangman
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hangman C
Simple hangman game written in C.
The goal was just to explore the language.
## Run the game
You need GCC to be installed.
```bash
gcc main.c -o main;
./main;
```or with Make:
```bash
make;
./game;
```## Constraints
I used a few additionnal flags while compiling to ensure code quality:
```sh
gcc main.c -Wall -Werror -Wextra -g -o main && ./main
```