Tagged Questions
168
votes
31answers
14k views
The Definitive C Book Guide and List
To follow the example of The Definitive C++ Book Guide and List for C Books here is a wiki post for organization.
A tag search for "C" and "Books" returns no complete book list results as of writing ...
29
votes
11answers
3k views
I'm trying to learn C, but what I am missing? Wow, are these books old
I'm a physicist by degree, and I'm working in a computational biophysics lab where everything is written in old school C, so I've been furiously scrambling (with my mind) to keep up and learn some C. ...
19
votes
8answers
2k views
Is “The C Programming Language” (book) current?
Is the version of C taught by this rather old, but frequently mentioned, book the same as that which is being used in the real world today? If not, could anyone list or point to a list of the ...
16
votes
5answers
722 views
C for R programmers - recommended resources/approaches once past the basics
I would like to improve my C skills in order to be more competent at converting R code to C where this would be useful. What hints do people have that will help me on my way?
Background: I followed ...
16
votes
16answers
2k views
What are some good resources for learning C beyond K&R [closed]
I'm currently reaching the end of working through the K&R book "The C Programming Language", and I'm looking for things to read next.
Any recommendations of:
blogs
more detailed / advanced ...
14
votes
8answers
3k views
Embedded programming books [closed]
What embedded programming/design books would you suggest? With embedded I mean near to hardware programming in ASM and C/C++. I'm looking something related to best practices in embedded ...
12
votes
6answers
621 views
“The C Programming Language” interesting quote in the preface
From the preface of the second edition of Kernighan and Ritchie's "The C Programming Language":
As before, all examples have been tested directly from the text, which is in machine-readable form.
...
10
votes
10answers
437 views
Low-level optimisation in C. Cache questions
I learned recently that the following code:
int a[N][N];
for(i = 0; i < N; i++)
for(j = 0; j < N; j++)
a[i][j] = 0;
Was actually faster than the same piece of code where i and j are ...
10
votes
0answers
4k views
Looking for advanced C programming book [closed]
Possible Duplicate:
The Definitive C Book Guide and List
I need a book that deals with implementing real projects in C, in contrast to "C Programming Language" which I recently finished ...
9
votes
19answers
3k views
Code optimization bibles
What are the most highly regarded books on optimization / performance tuning of C/C++ code?
8
votes
8answers
256 views
When learning C, should one only refer to resources published from 2007 onward?
I ask this question because the international standardization subcommittee for programming languages, or ISO/IEC JTC1/SC22 Programming languages, states on this page:
...
7
votes
8answers
783 views
Advanced C/C++ algorithms book [closed]
As someone with a primary electronics/embedded systems background, I've never had a full formal course on algorithms (even though I've been programming for 10+ years). In order to fill some gaps, I'm ...
7
votes
3answers
382 views
Good book/Resource for pThreads (Absolute Beginner)?
I am interested in going into concurrency and multi-threading in general. I have no idea about this field at all. I was wondering if someone could suggest a good book or a good online tutorial, or a ...
7
votes
5answers
657 views
C++ book recommendation for experienced C programmer [closed]
Possible Duplicate:
The Definitive C++ Book Guide and List
Most of the C++ books are extremely tedious for a high-mileage C programmer, who wants to skip the C basics and get down to ...
7
votes
5answers
373 views
Is the “The UNIX System Interface” chapter of “The C Programming Language” still relevant?
I started reading The C Programming Language and I have now reached "Chapter 8: The UNIX System Interface." Is that chapter worth reading and still relevant as of today?
6
votes
3answers
251 views
Any book covering POSIX:2008?
Is there any book covering the current POSIX standard (other then the standard itself)?
6
votes
4answers
353 views
C book for C++ programmer
Most SO questions address the reverse situation (C++ book for C programmer).
I've read and applied Lippman's C++ Primer and Meyer's Effective C++ (both in their latest editions). That means that I've ...
6
votes
3answers
702 views
A modern alternative to K&R's “The C Programming Language, 2nd Edition”?
A user suggested, as I quoted an exercise from K&R's The C Programming Language, that I should use a more modern book. Any suggestions from other stackoverflow users?
6
votes
5answers
555 views
I want to learn Objective-c, but
...I am not sure which book to go with.
I came to conclusion and it's between those two:
[Programming in Objective-C 2.0]
vs.
[Learn Objective-C on the Mac].
My programming experience/skill is ...
6
votes
5answers
399 views
Recommended textbook for machine-level programming?
I'm looking at textbooks for an undergraduate course in machine-level programming. If the perfect book existed, this is what it would look like:
Uses examples written in C or assembly language, or ...
6
votes
3answers
940 views
Good books on numerical computation with C [closed]
I've read the post "What is the best book on numerical methods?" and I wish to ask more or less the same question but in relation to C programming. Most of the time, C programming books on numerical ...
6
votes
5answers
828 views
Book recommendations: C for PHP programmers
I've been developing with PHP for a couple of years now, and have a strong grounding in it. But I'd like to learn more about programming languages in general, and want to be introduced to more ...
5
votes
3answers
358 views
Writing high load application in C?
Are there any resources, books and in-depth articles on this subject?
I'm interested in writing high load web server for specific needs.
Googling gave lots of things, but some of them are outdated, ...
5
votes
9answers
440 views
Good way to learn C/C++ for an otherwise experienced programmer?
I always liked coding and programming but I never got to learn it in a structured way. It has mostly been self study. I learned QBASIC, VB and PL/SQL while I was in school. Not very comprehensively, ...
5
votes
1answer
610 views
Is any book out there on programming FFMPEG encoding libs in c\c++?
Is there any book on programming FFMPEG encoding libs in c\c++?
I found one http://dranger.com/ffmpeg/
5
votes
2answers
294 views
The Design and Evolution of C
Is there a book that describes the design and evolution of C similiar to the book 'The Design and Evolution of C++' by Bjarne Stroustrup ?
thanks,
Prakash
5
votes
8answers
2k views
Good book on Programming C in Unix environment? [closed]
I have this fantasy of becoming a really good C programmer, but I've found it very hard to find learning resources on tackling big C projects. I've learned C a few times (I forget the fundamentals, ...
5
votes
9answers
6k views
Is there a beginner's book for C++ socket programming?
I'm fairly new to C++ sockets.
Is there a book for beginners for C++ socket programming?
for windows i really need help ive been through alot of tutorials dont get any of it and im using dev-C++
5
votes
7answers
444 views
Any good online C book
I've (re)started working in C after about 3 years:) And i discovered that my C language skills arent that good anymore.
Can anyone recommend an online book for C? (not C++) It should cover the basic ...
4
votes
3answers
130 views
Comprehensive C Design Guidelines Reference
Living in the Objective-C land for a while, I'm starting to "spread my wings" a bit with standard C - and am building a C library to encapsulate some particular functionality we have that needs to be ...
4
votes
1answer
261 views
Writing My Own Debugger [closed]
Are there any good books or online resources dealing with writing your own debugger? I can't seem to find any. The platform I would prefer would be windows or linux.
4
votes
5answers
147 views
Recommendations for a C beginner book for Java coder
I'm scheduled to take Systems Programming next semester, and it emphasizes C and Linux. I already have experience using Linux in a VM, but my C experience is one step past Hello World. So I'd like ...
4
votes
4answers
131 views
I'm a little confused about arrays in a program in K&R2
After reading such good reviews about K&R2 I finally bought a copy. I've been working through the first chapter and I'm a little confused about a line in the digit and white space-counting ...
4
votes
3answers
222 views
Can you recommend a good introductory book or online tutorial about SDL using C?
I would rather learn using SDL with C, rather than C++.
Any links/books?
4
votes
7answers
1k views
Good book for C programming on Linux? [closed]
Possible Duplicate:
Good book on Programming C in Unix environment?
Can you suggest some good books for C programming on Linux?
4
votes
4answers
431 views
C programming book for long time Java developer?
I started to learn how to program when I was 8 years old with BASIC. After like 5 years of GW-BASIC, I started to program in C and inline assembly language with my IBM XT PC. In my high school days, ...
4
votes
4answers
1k views
What is a good book to study data structures in C?
Please tell me a good book for studying data structures in C. Feel free to post links of good e-books if you have any. What should be the strategy while learning this topic?
4
votes
9answers
391 views
Please recommend resources for experienced developer new to C
I'm looking for good websites, and possibly books, to help me improve my C (not C++). I've been coding for over 10 years, mainly in Java, but my experience of C is minimal. I don't need something that ...
4
votes
16answers
2k views
After K&R what book to use to learn programming in plain C?
After The C Programming Language by Brian Kernighan and Dennis Ritchie, some of the books most favoured by beginners turn out to be ones best avoided, such as anything by Herb Schildt or even the ...
4
votes
9answers
1k views
Requirements for Compiler Design
The student adviser we were working with is suddenly on leave.
The plan was to design a compiler for a program which is similar to C (the basic structure of C still exists but keywords have been ...
4
votes
30answers
1k views
How do I learn programming without books?
Okay, so I read the k&r and C in 21 days (never quite finished the k&r) I never really liked looking through books, reading line after line to learn what n++ does.
I want to write some nice ...
3
votes
5answers
1k views
Best C programming book (for purists like me)
The only book that has satisfied my purism is C von A bis Z. However this is in german.
Do you know any book in English which actually uses EXIT_SUCCESS starting with the second example, and which ...
3
votes
3answers
304 views
3D software rendering
Is there a book which covers how to make a 3D software rendering engine from the bottom up (starting with simple pixel plotting), without DirectX and the like?
3
votes
1answer
260 views
How worthwhile is it to read Richard Stevens' books? [closed]
I recently came across a good book by Richard Stevens, his "UNIX Network Programming, Volume 1, 2nd Edition" (in C), published 1998. I was reading it for the past week & realized while practicing ...
3
votes
3answers
352 views
Advanced example-driven C book with a lot of code
I am looking for a book on advanced C programming that:
Teaches how to effectively express one's solution in C when one already knows the language in depth, how to express useful practical ...
3
votes
2answers
180 views
books about Firewall development [closed]
i was just asked today, but i couldn't answer precisely so that's why i'm asking here :-)
There is any book about Firewall design and implementations (Unix environment and C)?
For sure, i could ...
3
votes
1answer
814 views
Concurrent Programming Book for Unix in C
I'm looking for good books on concurrent programming in C in the Unix environment. They need to cover classic concurrency, Unix multi-processing, and POSIX thread. Most of the books I have found are ...
3
votes
5answers
1k views
What are good books to study C/C++ programming in Windows? [closed]
I'm an experienced Java/C# developer. I studied C/C++ in university but have never used them to build any non-trivial software. Now I'm interested in learning about C/C++ programming in Windows and ...
3
votes
5answers
585 views
When you were learning C in the K&R - did you do all the exercises?
I have this problem where if I read a book such as the K&R, I become fearful that I haven't learnt enough, until I've done all the exercises it asks of me; The K&R is a difficult book to many ...
3
votes
7answers
707 views
Book for going from C to C++
I know C pretty well, and I need to learn C++ pretty quickly. Does anyone know of any books, that assume a decent knowledge of C, and then goes over C++?