Decompiling EXEs to C++ source

  • Thread starter Thread starter Guest
  • Start date Start date
S.J. said:
Does anyone know how I may decompile EXEs to C++ source code?

For all practical purposes, you can't. You might be able to find a
decompiler that produces C, but even that's quite a stretch. There's just
too much semantic distance between x86 machine language and C++ (or even C)
for decompilation to be very successful.

-cd
 
Back
Top