• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

C++ Tutorials, Lessons... ?

MasterSamwise

Senior member
Hey,

Looking for some good sites.. Any suggestions?

I found one http://www.technipal.com but it seemed to be pretty sparse. I am going to be programming under linux/win98se/winxp (several different compiliers).

I am not currently enroled in a C++ although I went through a QBASIC and VISUAL BASIC course. Resources need not be the most basic... This is the concept of a loop type of thing. Just a good intro.

Thanks
Master Samwise
 
C++ how to program by Deitel .. that's where I learned it from. It's a real textbook, covers lots of things.

You *might* want to start with an easier object oriented language like Java.... C++ has both OO concepts and the icky C like stuff too 🙂
 
Originally posted by: thornc
Bruce Eckel's Thinking in C++ is a very good, and you can download it for free..


Bruce Eckel's book is truly great for understanding OOP but I wouldn't use that as an intro book to C++. To the first time learner it might be a little intimidating.
 
Originally posted by: Alternex
Originally posted by: thornc
Bruce Eckel's Thinking in C++ is a very good, and you can download it for free..


Bruce Eckel's book is truly great for understanding OOP but I wouldn't use that as an intro book to C++. To the first time learner it might be a little intimidating.

It wasn't for me.
 
Originally posted by: Glitchny
accelerated C++

This is also a good book, and one that teachs the very basics of C++ fast and efectively!

And "thinking in c++" is not hard to learn from...
 
Originally posted by: michaelh20
C++ how to program by Deitel .. that's where I learned it from. It's a real textbook, covers lots of things.

You *might* want to start with an easier object oriented language like Java.... C++ has both OO concepts and the icky C like stuff too 🙂

That is exactly the reason NOT to learn java instead of C++. Only once you understand how memory is dynamically allocated (and how pointers work) should you go to java.
 
Back
Top