What are the best websites for learning C++?

Quora Feeds

Active Member
Steve Tickle

C++ is not a language that you can learn 'in-depth' online. C++ is essentially an offline language, intended for lower level appllications than you are exposed to online.

To learn it in depth, you can't ignore the environment it exists in, namely the computer.
Learn processor & computer architecture (low-level details), algorithms (high and low level), patterns, architectural types and the reasons behind them.

Do not... learn just the language. That is just syntax that a monkey can pick up.

Get yourself setup with VC++ or g++ an dive in. No one learned anything 'in-depth' from a book. Practice it.

See Questions On Quora

Continue reading...
 
Top