๐ฏ A mini project built with C โ test your knowledge with random questions in an endless loop!
This is a basic quiz game written in the C programming language as part of a mini-project. It features:
- ๐ A set of pre-defined quiz questions
- ๐ฒ Random question selection
- ๐ Infinite gameplay loop until the user exits
- ๐งฎ Score tracking for correct answers
It's a great beginner-friendly project that demonstrates fundamental C concepts like functions, arrays, conditionals, loops, and rand()
usage.
- โ Multiple choice questions
- ๐ Continuous play loop
- ๐ฏ Score feedback after each answer
- ๐ง Randomized questions to avoid repetition
- ๐ป Language: C
- ๐งฎ Core Concepts: Arrays, Functions, Conditional Logic, Random Numbers, Loops
- ๐งฐ Compiler: GCC / Any standard C compiler
- Clone or download the repository.
- Compile the program using a C compiler:
gcc Main.c -o Main