Free C Books
Posted on January 10th, 2010

Free online book “Objective-C 2.0 Essentials”. The objective of this book is to teach the skills necessary to program in Objective-C using a style that is easy to follow, rich in examples and accessible to those who have never used Objective-C before.
Posted on March 24th, 2006

Free C book from O’Reilly Commons. Learning Cocoa with Objective-C is the “must-have” book for people who want to develop applications for Mac OS X, and is the only book approved and reviewed by Apple engineers.
Posted on March 24th, 2006
This document explains how to construct a compiler using lex and yacc. Lex and yacc are tools used to generate lexical analyzers and parsers. I assume you can program in C and understand data structures such as linked-lists and trees.
Posted on March 24th, 2006

Bison is a general-purpose parser generator that converts an annotated context-free grammar into an LALR(1) or GLR parser for that grammar. Once you are proficient with Bison, you can use it to develop a wide range of language parsers, from those used in simple desk calculators to complex programming languages.
Posted on March 24th, 2006
Programming in C: UNIX System Calls and Subroutines using C by A. D. Marshall. This includes Lecture notes + integrated exercises, solutions and marking.
Posted on March 24th, 2006

This book is a tutorial on image processing. Each chapter explains basic concepts with words and figures, shows image processing results with photographs, and implements the operations in C. Explains the basic concepts of analyzing and enhancing digital images. Author has distilled image processing down to its essentials and clearly explains how to do it.
Posted on March 24th, 2006

The product of a unique collaboration among four leading scientists in academic research and industry, Numerical Recipes is a complete text and reference book on scientific computing.
Posted on March 24th, 2006
These notes are part of the UW Experimental College course on Introductory C Programming.
Posted on March 24th, 2006
This book is a tutorial for the computer programming language C. The authors of this book hope you will learn everything you need to write simple C programs from this book.
Posted on March 24th, 2006

Advocating a style of C programming based upon data abstraction (classes) and run-time object verification.