C How to Program, 8th Edition
http://www.deitel.com/Books/C/CHowtoProgram8e/tabid/3664/Default.aspx
- You can find code examples from each chapter on the book's website
gcc source.c -o output.exe
or use make
make (all)
make source.exe (one source)
make clean
Some solutions are more useful than others, but this is really just an introduction to the C language.
The Math Practice Project and Menu Project are a combination of the skills learned through the intermediate exercises.