Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/martinkersner/programming-mistakes-in-fundamentals-of-data-structures-in-c

Programming mistakes which I have found in the book Fundamentals of Data Structures in C (2nd edition) while I was reading it.
https://github.com/martinkersner/programming-mistakes-in-fundamentals-of-data-structures-in-c

Last synced: 15 days ago
JSON representation

Programming mistakes which I have found in the book Fundamentals of Data Structures in C (2nd edition) while I was reading it.

Awesome Lists containing this project

README

        

## Programming mistakes in Fundamentals of Data Structures in C (2nd edition)
### (Horowitz, Sahni, Anderson-Freed)

"We have chosen to present our programs using ANSI C." ~ Part of preface from book

According to [wikipedia.org](http://en.wikipedia.org/wiki/ANSI_C): "ANSI C, also known as C89 and C90 depending on the year of ratification, ..."

All programs were compiled using `gcc -ansi -std=c89 nameoffile.c`.