i have an exe file of a c++ program..i want to view its code..is there any way i can open its code?
How to view source code?
The short answer is no. It's compiled and converted to binary for quick execution on the CPU.
Reply:Disassembling a program is a method of retrieving the source code of the program. This process can be buggy since data and commands look identical to a disassembler that doesn't know any better. The end result of disassembling a program is not the original source, but rather the assembly language equivalent of the compiled program.
You could try the following: http://www.softpedia.com/get/Programming...
Reply:It is impossible to get the original source code from decompiling.
Reply:not really. As the exe file is in binary format you won't be able to get the original sourcecode. You can only disassemble (is this the correct word in English?) it. However it will not be very readable and you have to know Assembler programming.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment