TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Help me learn C++ in a week

1 pointsby skippednoteover 12 years ago
I don't want to get very deep to the major details covering the oops part too. Will appreciate all the useful resource and books.

2 comments

jmdeldinover 12 years ago
Why do you need to learn it in a week, especially at such a superficial level?<p>If you just want to learn the basics, it's pretty simple. You just need a compiler, a text editor, and some semi-decent reference.<p>Compiler: If you're on Windows, you'll probably want Visual Studio Express. Otherwise, you just need gcc.<p>Text editor: There are plenty of open source ones. Google for one available on your platform.<p>What to study: It's a fairly easy language to read if you're familiar with other curly languages like Java or PHP, especially if you're ignoring most of the standard library and OOP. See if your library has C++ Primer (Lippman) or any O'Reilly C++ books, or pick up one from this list (<a href="http://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list" rel="nofollow">http://stackoverflow.com/questions/388242/the-definitive-c-b...</a>). Then just work through the first few chapters, solving each question/example. Otherwise, Googling "C++ tutorial" will help, but you might not get a complete answer.
srsamarthyamover 12 years ago
Try Accelerated C++, written specifically for rapid learning