Re: want to learn C++
JoeC wrote:
On Jun 21, 4:40 pm, Lee.k...@gmail.com wrote:
I want to learn C++! does anyone have any advice?
Lee
Yes, get started. I personally like accelerated C++.
http://www.amazon.com/Accelerated-C%2B%2B-Practical-Programming-Example/dp/020170353X/ref=pd_bbs_sr_1/103-9715501-8120643?ie=UTF8&s=books&qid=1182463388&sr=8-1
It would depend on how much experience you have with programming.
Start by learning the compiler do a hello world program. Learn the
basics. A few years ago I was in the beginner mode. It is very
challenging. Take your time experiment. start with the standard
inputs and outputs. Learn the data types learn program flow. Don't
get too caught up with pointers, learn about the standard libraries
especially string and vector. C++ is a strict language but there are
ways to get around the strict rules. Learn the rules first.
Seconded. Also, DO NOT USE VISUAL C++ 6.0!!!!! If you're using
Windows, start with "console" programs, do not use MFC. Avoid
Microsoft-isms (stdafx.h and _TCHAR/_tmain). MinGW is available for
free and is highly Standard compliant (modulo "export"), and so is
Visual Studio 2005 Express, also compliant (assuming /Za. again modulo
"export").