gui-bo / c-solutions

My Solutions to K. N. King's "C Programming: A Modern Approach", second edition

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

c-solutions

My complete solutions to the exercises in K. N. King's "C Programming: A Modern Approach", second edition.

Information

The solutions to the exercises are complete, including the first exercises on chapter 2 to the last program of chapter 27. Modified code from the book has been included under fair use and with the explicit copyright notice included in relevant files.

My solutions aim to be as complete as possible with little ambiguity or cluttering. The complete exercise questions will also be provided, and the solutions will be compiled as directed from the book.

All testing was done on a x86_64 Linux system running GCC 7.2.0 or greater. The compiler has been set to run the C89 or C99 standard unless otherwise noted:

$ gcc filename.c -o filename.o -Wall -Wextra -Wpedantic -std=c89
$ gcc filename.c -o filename.o -Wall -Wextra -Wpedantic -std=c99

Note that for all exercises or projects that require the <math.h> header, linkage in gcc is required, i.e., to use the -lm option. Makefiles are provided for such programs, and Makefiles are also provided for projects consisting of multiple files.

License

Code from the book has the copyright notice as stated in book-notice.txt.

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License.

About

My Solutions to K. N. King's "C Programming: A Modern Approach", second edition

License:GNU General Public License v3.0


Languages

Language:C 96.5%Language:Makefile 2.9%Language:C++ 0.6%