vote up 14 vote down star
4

alt text

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 differences?

flag

7 Answers

vote up 19 vote down check

The book only covers the 1989/1990 version of the C standard. The current standard is from 1999. However, the 1999 version is still not widely used, so the K&R 2nd edition is still highly useful.

Moreover, it's still highly enjoyable.

link|flag
2  
This must be some new definition of the word "enjoyable" that I was not previously aware of :-) Still, +1 for pointing out the C99 difference. – paxdiablo Apr 12 at 0:08
Nice H2G2 reference, Pax. I love that line. – Chris Lutz Apr 12 at 0:11
Understanding K&R is like a short but intense course in Computer Science- you will understand how a computer works, as opposed to Java/C# CS graduates who only have a vague idea of what the runtime+O/S is, just that it "does everything" for them. – kmarsh Oct 22 at 13:22
vote up 1 vote down

I personally have three copies K&R on my shelf, and use them often. It's still the go-to book for a surprisingly wide range of questions.

But it is showing some age. C99 != C89 in several details, but I think the more important differences are in how our style of programming has evolved in the last twenty years. There are standard libraries like glibc to do many of the things that used to be re-implemented and re-re-implemented by C programmers of old. Depending on your situation, you probably don't have to carefully manage every byte of memory, meaning that modern code has a fraction of the malloc()ing that older code had. Changes in focus such as those make some (not all) of K&R look a little obsolete.

For learning modern C, I recommend Modeling with Data, which is available from that link in PDF or from Princeton Press as an actual book. It's primarily about scientific computing, but the first half gives a thorough and reasonably general intro to C from the modern perspective.

link|flag
vote up 5 vote down

As others have said, K&R covers C89 (C90), and not C99, but it remains a very good book indeed.

For a detailed view of C99 after reading K&R, use C: A Reference Manual (5th Edition).

link|flag
K&R might be a better learning resource (I honestly don't remember - it's been years since I've read it or had it), but Harbison & Steele is definitely the reference book to have for C - even for C90 or K&R. – Michael Burr Apr 12 at 4:02
vote up 12 vote down

It covers C89, it is a must read but C99 introduced several new features, many of which had already been implemented as extensions in several compilers and they are widely used:

  • inline functions
  • variable declaration no longer restricted to file scope or the start of a compound statement
  • several new data types, including long long int, optional extended integer types, an explicit boolean data type, and a complex type to represent complex numbers
  • variable-length arrays
  • support for one-line comments beginning with //, as in BCPL or C++
  • new library functions, such as snprintf
  • new header files, such as stdbool.h and inttypes.h
  • type-generic math functions (tgmath.h)
  • improved support for IEEE floating point
  • designated initializers
  • compound literals
  • support for variadic macros (macros of variable arity)
  • restrict qualification to allow more aggressive code optimization (http://en.wikipedia.org/wiki/C99)
link|flag
vote up 20 vote down

It isn't current, it is eternal.

link|flag
-1, not a real answer – hasen j Apr 12 at 1:13
Let he who has ears, hear. – chaos Apr 12 at 2:06
vote up 4 vote down

I think the latest version of the K&R book was published in 1988. There have been some enhancements to C since then, such as the changes for "C99."

The K&R book is still probably THE resource for C, despite the new additions. Here are a few links that might help point out the new additions:

link|flag
vote up 2 vote down

It covers the C language as standardized by ANSI in 1989. There was an update to the language ('C99') in 1999, although compiler support for it is generally spotty and the original ANSI standard of the language is the safest way to use C in a portable fashion.

link|flag

Your Answer

Get an OpenID
or

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