hi, i want to ask,can i convert exe file to c++ source code.i have an exe file and i want to open in c++ program.is there any tools can be used to open exe file in c++ program?
Although its easy enough to disassemble a program to assembly language you can never recover labels and variable names etc. so decompiling into a high level language such as c++ will result in mostly junk inunderstandable code being produced.Part of what makes high level languages easier to work with than pure machine code is the ability to name memory locations with a sensible meaningful name. any decompiling could only end up with something like int1 or label1.
What you are after is like the holy grail to programmers and i firmly believe that its not really possible to decompile machine code to c++. so much information would be lost in the decompilation process that any produced code i think would be junk.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.