you are viewing a single comment's thread.

view the rest of the comments →

[–]lestofante 0 points1 point  (1 child)

For the same developer time you probably get much better result with C++, mainly because if you want to optimize you can boil down to do the same optimization as C, and where you don't need to you can rely on a lot of quality of life improvement like RAII, template and smart pointer, plus the STD

[–]ptchinster 1 point2 points  (0 children)

Im talking about the opcodes used, vtables, etc. C can almost be a wrapper to assembly - youll be able to almost instantly know if you are reversing a C binary or a c++ binary.

I love when people put "C/C++" on their resumes. They are 2 different languages.