anyone know where i can get a decompiler?

SinNisTeR

Diamond Member
Jan 3, 2001
3,570
0
0
i need to get a decompiler. i made a stupid C program ages ago and i need to get its source. i was wondering if there is anyway that i can get my source back? someone mentioned decompiler so im wondering if there is a visual c++ decompiler.
 

ineedsleep

Senior member
Aug 24, 2001
256
0
0
The only types of decompilers I know of will take the binary and turn it into ASM. There might be one, but this is all I that I know of...
 

EagleKeeper

Discussion Club Moderator<br>Elite Member
Staff member
Oct 30, 2000
42,589
5
0
You can reverse back to assembly cleanly.

After that, reversing futher, boils down to assignments to variables (Var1, Var2 etc) which have no english meaning for a program.

Also white space and comments will not exist.
 

konichiwa

Lifer
Oct 9, 1999
15,077
2
0
There really isn't a way to go from machine code back to the programming language you used (C, C++, VB, whatever) because the point of the compiler is that it translates that programming language into ASM. You can get a disassembler that will give you ASM code but if you don't know ASM your SOL and USC WAP.

;)
 

Descartes

Lifer
Oct 10, 1999
13,968
2
0
konichiwa is correct. There's no way to get the source back, because all your pretty formatting and hard work means absolutely nothing once compiled.