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

We found 1 Reddit comments about Ivor Horton's Beginning ANSI C++: The Complete Language (Expert's Voice). Here are the top ones, ranked by their Reddit score.

Computers & Technology
Books
Computer Programming
Software Design, Testing & Engineering
Software Development
Ivor Horton's Beginning ANSI C++: The Complete Language (Expert's Voice)
Check price on Amazon

1 Reddit comment about 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!