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 been exposed to a minimum of C -- however, I'm comfortable with arrays, pointers, C-style casts etc.

Can I pick up an intermediate book on C (e.g. Expert C Programming by van Der Linden) and understand it, or should I start with K&R?

link|improve this question
feedback

4 Answers

up vote 6 down vote accepted

Books on C will mainly exercise a subset of your knowledge from C++ programming. They may dwell on things like implementing data structures, which you might have been using via the STL but never had to think much about the implementation of. That might be a bit of a struggle, but not much. So, I suggest you go for an intermediate book if you'd be happy reading an intermediate C++ book, advanced if advanced etc.. On the optimistic side, IMHO having used higher level C++ concepts you've probably got a clearer concept of what they are and when to use them than many 9-to-5 corporate C programmers (who often stick to arrays unless their customers, peeved at performance, set fire to their trouser legs). Even the confident, intuitive expectation of their behaviour (talking containers not programmers with burning trousers), and a reasonable API, is valuable. On the other hand, the good experienced C programmers will know how to rip together and tune hash tables and such - an art increasingly uncommonly practiced in the C++ world (for better or worse).

Also, don't undervalue concise lists of the delta from C to C++... that shows you what you have to learn to live without, as well as what you might encounter or explore. Bit hard to find something quickly - best so far, and illustrative - the post by SuperKoko 80% of the way down http://www.daniweb.com/forums/thread51490-2.html / one or two over-obvious ones removed, the rest not validated for correctness past or present...

  • C has an extended wide character stream library thanks to C AMD1 (since 1995).
  • C has Variable Length Arrays.
  • C has restrict pointers.
  • C has imaginary and complex numbers (C++ has a standard library for complex numbers).
  • C has flexible arrays.
  • C has a much more detailed implementation constraints on number representations, integer division.
  • C has compound literals and hexadecimal floating point constants.
  • C has designated initializers.
  • C has extended integer types & functions in <inttypes.h> and <stdint.h>, additional floating-point characteristics (in <float.h>) and environmental features in <fenv.h>
  • C has macros with a variable number of arguments.
  • C has __func__ and va_copy
  • C allows (AFAIK) to alias several members of the same union (results are unspecified)
  • In general, C has much more specific rules about representation of objects, trap representations, and the result of operators.
link|improve this answer
OK, thanks for the detailed response. Are you aware of any concise such lists you can link to? – jackj Nov 26 '10 at 8:26
jackj: hope the edit serves... cheers. – Tony Delroy Nov 26 '10 at 8:50
thanks again. I also found this: david.tribble.com/text/cdiffs.htm#C++-vs-C (Sorry, I don't have enough reputation to upvote.) – jackj Nov 26 '10 at 8:58
1  
@jackj: will check it out. re upvotes - no sweat - I couldn't give a hoot ;-). – Tony Delroy Nov 26 '10 at 9:06
feedback

Read K&R. And think about how to program OO (Object Oriented). There are few references on Internet how to program OO, but I did not go trough any. For that subject you need pointers on functions, so when you will be there (in K&R) check that.

link|improve this answer
I'm competent in OO, and most modern C++ programmers would say that function objects (or now lambdas) are a better solution than function pointers. My question is about C and whether knowing C++ means I can be considered to know enough of C so as to jump directly to intermediate books. – jackj Nov 26 '10 at 7:44
jackj: that's ralu's point - you'll have to learn to use pointers to functions in order to retain an OO "style" when using C. No point thinking about function objects when there are no object, and if C's added lambdas - or wants to - I must've slept through that one ;-). – Tony Delroy Nov 26 '10 at 8:12
@Tony: OK, that is a possible interpretation of ralu's answer -- though he doesn't say OO in C, and anyway a competent C++ programmer knows how to use function pointers. The reason I didn't understand the answer is that according to my experience most people who use C write in a procedural style, not OO. – jackj Nov 26 '10 at 8:28
jackj: varies a lot from project to project, often depending on whether the architect had OO experience and missed it, but sometimes because domains like GUI libraries genuinely suit OO very well so even C libraries tend to adopt OO-like practices. If function pointers are comfortable for you, then the whole things a bit of a non issue - just that they're not for every C++ programmer who'd label themselves intermediate :-). – Tony Delroy Nov 26 '10 at 8:34
Point was. C has so simple syntax that there is no such thing as intermediate level for c++ programmer. Only difference is that c does not have OO principle by design. And as long as you can avoid OO you should. But passing structs it supports simple non polymorphic principle and as long as you can handle this you even do not need pointers. But for applying polymorphism and virtual functions you need pointers on functions, and you have to do this same way that do this c++ under the hood. – ralu Nov 26 '10 at 14:09
feedback

Can I pick up an intermediate book on C (e.g. Expert C Programming by van Der Linden)

Yes! Expert C Programming is an excellent book and I dont see any reason why you cannot start with it after being read two excellent books on C++.

Apart from that get a copy of ISO C99 draft and start reading it too (for reference).

link|improve this answer
feedback

I was in a similiar situation. I still used K&R, but skipped a little bit over the first few chapters and for the C99 part I used C in a Nutshelll, which is an excellent reference. I borrowed them from the library, but ended up buying both.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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