#4,447 in Computers & technology books
Use arrows to jump to the previous/next product

Reddit mentions of Ivor Horton's Beginning ANSI C++: The Complete Language (Expert's Voice)

Sentiment score: 1
Reddit mentions: 1

We found 1 Reddit mentions of Ivor Horton's Beginning ANSI C++: The Complete Language (Expert's Voice). Here are the top ones.

Ivor Horton's Beginning ANSI C++: The Complete Language (Expert's Voice)
Buying options
View on Amazon.com
or
Specs:
Height9.61 Inches
Length6.69 Inches
Number of items2
Weight4.2328754304 Pounds
Width2.19 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 1 comment on Ivor Horton's Beginning ANSI C++: The Complete Language (Expert's Voice):

u/AndyShootsAndScores ยท 4 pointsr/programmer

Ivor Horton writes good textbooks for learning programming. I learned from Ivor Horton's Beginning ANSI C++: The Complete Language, and it was really helpful to get me started in my career. You may want a more current version though.

If you'll be working with arrays, make sure you study Standard Template Library ("STL") containers, which are covered in that book. A lot of introductory programming texts teach you to use arrays (i.e. int height [10];) first, but in practice people use vector containers (i.e. std::vector<int>)

Happy coding!