Advertisement

Can someone please answer this question for me??? Please??

Started by December 01, 2002 10:30 PM
4 comments, last by mva5580 21 years, 11 months ago
Hi, I''m new here, and I just have a simple question. Does anyone here know of a way to sort of "de-compile" an .exe file for C++?? I''m just curious about this, and if anyone has some sort of information on this, I would really appreciate it!
You can but it is not pretty. You won''t get nice code that you can look at and easily see how things are done if that is what you are shooting for.
Advertisement
Well, kind of looking for something easy to look at, but I guess I''m wondering what exactly you mean by not pretty. And how do you go about doing what you''re saying?
If the program wasn''t optimised and has debugging information in it, you could get something that looks almost readable and similar to the original. But odds are that isn''t the case.

This can decompile a C program, if you''re interested.
REC - Reverse Engineering Compiler
Chess is played by three people. Two people play the game; the third provides moral support for the pawns. The object of the game is to kill your opponent by flinging captured pieces at his head. Since the only piece that can be killed is a pawn, the two armies agree to meet in a pawn-infested area (or even a pawn shop) and kill as many pawns as possible in the crossfire. If the game goes on for an hour, one player may legally attempt to gouge out the other player's eyes with his King.
My guess is you''ll get some form of assemby code in most cases, which is generally pretty unreadable. You couldn''t, for example, reverse-compile commercial software or games into their c++ form, if thats what you''re wondering.
from google

faq

-ben

This topic is closed to new replies.

Advertisement