Results 1 to 4 of 4

Thread: compiler/command line

  1. #1

    compiler/command line

    Hi

    I have a program/load.exe and when i click right on it to View File it looks like P‹MøQÿ@ ‹UøRÿ@ ‹å]ÃX And and so on. what i want to do is change is back in to command lines. How can this be done is what im asking.

    thank this will give me a better understanding on proraming

  2. #2
    Senior Member
    Join Date
    Feb 2004
    Posts
    620
    So what you're trying to say is you want to take an executable file and view the source code? If this is the case, you're out of luck. Unless you have a deep understanding in assembly language. Because the only way I know about to view the code of an executable is to disassemble it. Unless you are a seasoned assembly programmer it will look like garbage.

    If it interests you, you could check out Resource Hacker, a program to extract resources in Windows executables and .res files. There's no source code involved, though.

    Maybe someone will provide some more useful information. This is all I have to offer.

    mjk

  3. #3
    Senior Member
    Join Date
    Nov 2001
    Posts
    4,785
    the words used in code tell the compiler what you want the executable to do. the compiler makes it according to your specifications. the code is the specification resulting in machine code as you discribed it to the compiler as the output. the code is not in the output. you discribe a suit you want to a tailor. s/he makes it to your specification and your pleased. you'll find what you discribed but not the discription.

    there are devices that are designed to reverse compile a binary. it examines the machine code and guesses at what the code was that created it. but as code has become more protected de-compilers are becoming more and more obsolete. there are still a few good one around and the better ones are not free.

    good luck proraming! :-)
    Bukhari:V3B48N826 “The Prophet said, ‘Isn’t the witness of a woman equal to half of that of a man?’ The women said, ‘Yes.’ He said, ‘This is because of the deficiency of a woman’s mind.’”

  4. #4
    Senior Member Info Tech Geek's Avatar
    Join Date
    Jan 2003
    Location
    Vernon, CT
    Posts
    828
    Do you know what code the program was loaded in?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •