This is a simple number Guessing Game written in C++. Highest Score is saved in a txt file name best_score.txt .
- Requirement: C++ compiler (preferably GNU Compiler) needs to be installed in your pc.
- Using the makefile
- open terminal in project directory
- use the following command:
$ make
$ ./'Guess Game'
- To clean the object files and build the project again from scratch use command
$ make clean
- Without using makefile : can use the following commands to compile the project :
$ g++ *.cpp -o filename
$ ./filename