Can I learn C++?

Hello I am interested in learning C++. I already learned HTML and CSS and I'm pretty good at both. Now I want to learn C++> Do you think I can? If so, recommend the best place to learn it please.

Thanks,
Shane Bauer
closed account (1CfG1hU5)
these web sites are a good place to start

http://www.cplusplus.com/doc/tutorial/

http://www.cplusplus.com/reference/

http://www.cprogramming.com/tutorial/c-tutorial.html

http://www.cprogramming.com/tutorial/c++-tutorial.html

other sites found by google, bing, yahoo
Of course you can learn C++. Everybody can learn C++.

This site is good place to start.

Assume you're using Windows, you can download Microsoft Visual C++ Express for free. It's a very nice IDE to start programming.

If you'd like some books, Thinking in C++ and C++ Premier are good.
You’ll need a textbook for learning C++. This is the case even when your implementation comes with ample on-line documentation. The reason is that language and library documentation together with sample code are not good teachers of concepts. Typically such sources are silent about why things are the way they are and what benefits you can expect (and which you shouldn’t expect) from a technique. Focus on concepts and techniques rather than language-technical details.
...
When choosing a book, look for one that presents Standard C++ and uses the standard library facilities in an integrated manner from the start.
...
Aim to write idiomatic C++: Avoid simply writing code in the style of your previous language using C++ syntax. There is little to be gained from simply changing syntax.
https://isocpp.org/wiki/faq/how-to-learn-cpp
Topic archived. No new replies allowed.