Sunday, August 2, 2009

Convert exe file to the coding?

is there any way that i can convert my .exe files to .c or .cpp files.....


i have just now learned c and c++ and sometimes think of how can i convert .exe files to .c or .cpp files in case of i delete my coding files

Convert exe file to the coding?
You can sort of do this, but it's messy. Things like variable and file names are removed from compiled programs, if you get a disassembler you will probably get 1 huge file containing everything, with variable names like int1, int2, etc... It will be almost impossible to make sense of the code, and it won't optimize it to make it human readable, in many cases you'll get big long ugly lines of confusing code.
Reply:use a decompiler. google it out as i have never used it :P


No comments:

Post a Comment