This is a small project I made in my first semester for my C programming course. It's a terminal-based game inspired by Buckshot Roulette.
Basically you play against the computer in a game of chance. The game runs entirely in the terminal — no actual graphics engine or anything like that. But I did put some effort into the layout and text alignment inside the terminal to make it feel a bit more like a proper game. Things like borders, spacing and centered text give it a little visual vibe even though it's all just characters.
Just compile the .c file and run it:
gcc Buckshot_Roulette.c -o game
./game
First semester project so the code is pretty basic. Used formatted text and alignment in the terminal to make it look cleaner. It was a fun way to practice loops, conditionals and random number stuff in C. Might clean it up later.