My complete solutions to the exercises in K. N. King's "C Programming: A Modern Approach", second edition.
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. Makefile
s are
provided for such programs, and Makefile
s are also provided for projects
consisting of multiple files.
Code from the book has the copyright notice as stated in book-notice.txt
.
This work is
licensed under a Creative Commons Attribution
4.0 International License.