Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Decompile/Disassemble

Status
Not open for further replies.

WeazleFuzion

Programmer
Aug 22, 2003
1
US
I would like to convert exe to C++ code to be edited in Microsoft Visual C++ 6.0. Simple Porgrams such as Solitaire or Pinball are examples of some to be reverse engineered. I would just like to edit them, and also learn from them. I have very little C++ experience, just HTML, but that is with MS Frontpage.
 
Short answer is - forget it.

Decompiling is like un-baking a cake - a compiler processes your source code into object code, it is not a simple mechanical translation which is easily reversible.

Sure you can find the odd tool around the web, but these only really work well on small test cases, and generally pretty poorly on any large program. Sure the results may be understandable by a compiler, but the results NEVER look like what the original programmer wrote, and NEVER anything which you would want to learn from.

If you really want source code to learn from, then try
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top