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.