This is a simple bingo card generator written in C, it generates a bingo card based on multiple paramaters which can be passed in the form of flags
- Clone the repository and navigate to it:
git clone https://github.com/tomScheers/Bingo_Card_Generator
cd Bingo_Card_Generator
- Compile and run the program:
gcc -o main main.c
./main
- Pass down paramaters: The project takes in multiple parameters which will change the way the bingo cards are generated, here's an overview:
--width, -w
: Type int, Default 5 — How wide your bingo card will be.--height, -l
: Type int, Default 5 — How high your bingo card will be.--min, -m
: Type int, Default 1 — Minimum square value.--max, -x
: Type int, Default 99 — Maximum square value.--num, -n
: Type int, Default 1 — Amount of bingo cards generated.--help, -h
: Type None, Default None — Brings you to this help menu.