RE: assembly conversion
once C code (or code in any other higher level language) is compiled, information about the original code is lost and you can't easily reconstruct the original code. at least that's for languages like C, chances of getting useful output are higher when decompiling java class files or similar. so the nearest you'll probably get when decompiling an exe file is a higher level pseudo code which you'll have to figure out yourself. plus, if you're trying to decompile a regular (proprietary) binary, you'd probably have to get around obfuscation and encryption first.
This post was edited on 01-15-2010 at 04:40 PM by andrey.
|