Reddit Reddit reviews C++ Primer (4th Edition)

We found 11 Reddit comments about C++ Primer (4th Edition). Here are the top ones, ranked by their Reddit score.

Computers & Technology
Books
Computer Programming
Microsoft C & C++ Windows Programming
Microsoft Programming
C++ Primer (4th Edition)
Check price on Amazon

11 Reddit comments about C++ Primer (4th Edition):

u/k4st · 15 pointsr/programming

Before teaching myself C++, I was terrified of the language too. Everyone said it's such a big language with many dark corners, and for the most part they're right. Then I /had/ to learn it for some coursework. I found the book C++ Primer to be very good. I abused all sorts of features of the language at the start, wrote tens of thousands of lines of code, and now I actually enjoy using the language for some tasks.

By analogy, cars and driving are scary too, but a healthy respect for the rules and best practices will usually get you to your destination safely.

u/a_redditor · 4 pointsr/learnprogramming

It's good to hear you didn't pay money for this book. If you take a look on Amazon, you can see that the book has 2.5 star rating from 14 reviews. Not a good rating, and not a well known book at all from the very small number of reviews.

Books like this are aimed at the "passerby" market. By this I mean that they're for people who see a catchy title (for dummies!) or an impressive claim (learn C++ in 24 hours!) and think "Oh, I could do that! Programmers make a lot of money, right?" But these books tend to be so terribly written and/or cover material in such a glossy manner that, by the end, the reader has actually learned very little, if anything at all.

An example of a good book for new C++ programmers is C++ Primer. As you can see it is a much better selling book, and the reviews are much better overall. More importantly, the authors are experts in their field, having either been involved in the development of the original C++ language, C++ standardization, C++ compilers, or some combination of these.

Stephen R. Davis' claim to fame seems to be writing these crappy "For Dummies" books along with that "Learn C++ in a Weekend" book.

All this said, while C++ Primer and others are certainly good books for C++ beginners, C++ itself is not considered to be a very beginner friendly language. You can certainly do it, lot's of people start with C++, however if you find that you're struggling or having trouble with seemingly simple things, you may want to head over to the FAQ and read about the different ways people start programming.

u/alexs · 3 pointsr/programming

C++ Primer is excellent.

(NOT C++ PRIMER PLUS OH DEAR GOD STAY AWAY)

u/apudyn · 3 pointsr/cpp

I think you'll get more feedback if you ask your questions as precise as you can. The term "to show" for example doesn't make it clear if it's related to printing a number or if it's more related to manipulating strings. There are many Websites about learning C++, but also many good books. (I like C++ Primer.)

u/[deleted] · 3 pointsr/learnprogramming

The consensus here is that you can't, as internet C++ tutorials are all basically crap. If you want to learn the language properly, you will need a good textbook, such as C++ Primer.

u/blindsc2 · 2 pointsr/learnprogramming

I bought the C++ Primer, 4th edition a week ago on advice from this subreddit, and I can't recommend it more. It goes into the perfect amount of detail and uses the right amount of jargon. It's chapters are distinguished very well from one another, and there are full glossaries of all the key words met at the end of each of them. Those along with relevant exercises (some that can be done in your head, others that need to be coded) throughout help you learn much more effectively.

http://www.amazon.com/Primer-4th-Edition-Stanley-Lippman/dp/0201721481

u/TheMintness · 1 pointr/AskReddit

I heard this one is good.

u/TheSuperficial · 1 pointr/cpp

Lippman's C++ Primer (4th ed) won't disappoint.

u/mchaney2 · 1 pointr/learnprogramming

Ah. This is the explanation I was looking for. Thank you.

I understand your lack of confidence in the book. The other book I was using is Lippman's C++ Primer. The actual code presentation in the Primer was simple and beautiful, but Stroustrup's book seems to follow a more logical sequence of topics. I'm a math major and BS's text reads like a good math book.