c++ book with answer book

Hi,

C++ primer is good book for beginner and it has answer book named c++ primer ANswer book.

Any other good book for beginner which has official answer book.
Thinking in C++.

According to me if you are a beginner in C++, wait till books on the new Standard (supposed to be this year) comes.
the c programming language by kernighan and ritchie
Thanks for reply but I need for c++ book with answer book.
aaah... i missed that... :(
Thinking in C++ has an answer book.
IMO, doing the exercises in programming books is (almost) a complete waste of time, not to mention extremely boring.
You're better off testing what you learned in real programs instead of artificial examples without practical relevance.
I agree with Athar, I personally haven't tried any of the exercises nor have I bought the answer book.
Just code your on programs using the thing's you have learnt. This way you are better equipped to design any program from scratch.
Last edited on
closed account (z05DSL3A)
doing the exercises in programming books is (almost) a complete waste of time

It all depends on the book, a good book will have worthwhile exercises. If the book just asks you to write pointless small programs, they are probable not worthwhile other than to drive home the syntax of a given construct. If they ask things like:
Which is the most appropriate, a vector, a deque, or a list for the following program tasks? Explain the rationale for your choice. If there is no reason to prefer one or another container explain why not?...
then it is worthwhile, as it make you think about what you have just read and maybe in the future you don't just opt for a vector.


Topic archived. No new replies allowed.