Skip to content

williamgherman/c-solutions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published