NU SST CSCI 151 Course Exercises Solutions
This repository stores solutions to most of the CSCI 151 course exercises.
This can be done in several ways:
git clone https://github.com/kirusfg/csci151.git
To run the program after compiling it, simply use:
gcc lessonX.Y.c -o programName.out -lm
./programName.out
If you are using Eclipse IDE, please add the following line to your code:
setvbuf(stdout, NULL, _IONBF, 0);