If you're talking about getting back the C source code, then the answer is no.
Some decompile tools can recover something which a C compiler can understand, but it's far from being useful C source code (you wouldn't want to modify it), and is certainly not what was originally written by the author.
Trivial example
Code:
int i;
for ( i = 0 ; i < 10 ; i++ ) printf("%d",i);
int i = 0;
while ( i < 10 ) printf("%d",i++);
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.