Possible Duplicate:
Good book on Programming C in Unix environment?

Can you suggest some good books for C programming on Linux?

link|improve this question
Duplicate of stackoverflow.com/questions/851980/linux-programming-book? Pretty close at least. – Jonik Mar 9 '10 at 12:24
3  
Oh, as an open-ended, poll-type question this should probably be community wiki. – Jonik Mar 9 '10 at 12:26
This is also closely related: stackoverflow.com/questions/1453209/… (Good book for C programming on Unix) – Jonik Mar 9 '10 at 12:31
feedback

closed as exact duplicate by Ether, Marc Gravell Mar 9 '10 at 16:53

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

7 Answers

up vote 10 down vote accepted

K&R - The Bible, everyone should read it at least once.

C Programming - A Modern Approch - A good companion to K&R

Advanced Programming in the Unix Environment - everything you need to know about unix/linux programming

link|improve this answer
feedback

Programming in C by Kernighan and ritchie http://www.goldfish.org/books/The%20C%20Programming%20Language%20-%20K&R/kandr.html

link|improve this answer
feedback

Not especially focused on C programming, but a sum of wisdom for UNIX/Linux programming in C is Eric Raymond's: The ART of UNIX programming.

link|improve this answer
feedback

For pure C, don't look further than this: http://en.wikipedia.org/wiki/The_C_Programming_Language_(book)

Once you've read this one, you'll be set.

link|improve this answer
feedback

The standard textbook in many universities is Advanced Programming in the Unix environment.

link|improve this answer
feedback

Search for books on the standard C library, or on POSIX. These will describe the functions available in Linux under C.

Also, here is an online book: http://www.cs.cf.ac.uk/Dave/C/

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.