https://github.com/nixtomalon/guess-the-number
🎲 A basic text-based game developed using the C programming language.
https://github.com/nixtomalon/guess-the-number
basic-programming c console-application data-structures fundamentals game sample-project
Last synced: about 2 months ago
JSON representation
🎲 A basic text-based game developed using the C programming language.
- Host: GitHub
- URL: https://github.com/nixtomalon/guess-the-number
- Owner: nixtomalon
- Created: 2020-12-25T14:34:23.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-06T06:15:34.000Z (almost 2 years ago)
- Last Synced: 2024-04-06T07:23:35.042Z (almost 2 years ago)
- Topics: basic-programming, c, console-application, data-structures, fundamentals, game, sample-project
- Language: C
- Homepage:
- Size: 938 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🎰 guess the number 🎰
Welcome to the ``guess the number game``, a simple number guessing game implemented in C programming language
## About
This game allows users to guess a randomly generated number within a specified range. Players can input their guesses and receive hints to guide them toward the correct answer.
## Usage
To play the "Guess The Number" game:
1. Clone this repository or download the source code.
2. Open Terminal, navigate to the directory containing your file, and run:
```
gcc -o guess_the_number_output guess_the_number.c
```
3. After successful compilation, run the executable:
```
./guess_the_number_output
```
## How to play
- Launch the game and enter your guess using the input method provided.
- Submit your guess to see if it matches the generated number.
- Receive hints and feedback after each guess to guide you closer to the correct number.
## Example Demo