This is a simple terminal-based number guessing game written in the C programming language.
- The program generates a random number between 1 and 100.
- You guess the number.
- If your guess is too high, it says βLower number please!β
- If your guess is too low, it says βHigher number please!β
- It keeps track of the number of attempts.
- When you guess it correctly, it shows a congratulatory message and how many guesses you took.
project-1/ βββ main.c // Your main C code βββ LICENSE // MIT License βββ README.md // This file π How to Compile and Run π§ On Linux / macOS: gcc main.c -o game ./game
πͺ On Windows (using GCC/MinGW): gcc main.c -o game.exe game.exe
π License This project is licensed under the MIT License β feel free to use, modify, and share it.