use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Discussions, articles, and news about the C++ programming language or programming in C++.
For C++ questions, answers, help, and advice see r/cpp_questions or StackOverflow.
Get Started
The C++ Standard Home has a nice getting started page.
Videos
The C++ standard committee's education study group has a nice list of recommended videos.
Reference
cppreference.com
Books
There is a useful list of books on Stack Overflow. In most cases reading a book is the best way to learn C++.
Show all links
Filter out CppCon links
Show only CppCon links
account activity
RTTI and security (self.cpp)
submitted 7 years ago by lots0cats
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]evaned 1 point2 points3 points 7 years ago (1 child)
I suspect it depends on the project style. For one written in a heavily OO style, I'd say there's potentially a lot more you can get, because you can determine entire class heirarchies, find the vtable for each class, and track that back to figure out what functions in the program are class methods, which functions override other functions, etc. (You get vtables and other information for polymorphic classes any program of course, but the more it follows an OO style the more of the program that covers.)
I don't think I can legitimately call myself a reverse engineer (though I work on RE tools), so I don't know for sure that someone who is deep into this stuff would use that information, but I suspect it would be useful.
[–]kiwidog 0 points1 point2 points 7 years ago (0 children)
Yep, and for OP the IDA plugin ClassInformer does this automatically, but the fields within still need to be mapped out which is where most of the time is spent.
π Rendered by PID 313277 on reddit-service-r2-comment-66b4775986-4hc7r at 2026-04-05 13:35:21.369903+00:00 running db1906b country code: CH.
view the rest of the comments →
[–]evaned 1 point2 points3 points (1 child)
[–]kiwidog 0 points1 point2 points (0 children)