• Stars
    star
    512
  • Rank 86,323 (Top 2 %)
  • Language
    C
  • License
    GNU General Publi...
  • Created about 7 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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

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.