Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 622 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 622 Bytes

C Programming: A Modern Approach - Solutions

My solutions to the Exercises and Projects from K. N. King's "C Programming: A Modern Approach", 2nd Edition

C Programming: A Modern Approach

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

gcc -O -Wall -W -pedantic -std=c89 -o filename.o filename.c

I welcome your feedback and encourage contributes to fix any mistakes in my solutions