How can I view the C code after compilation in binary code?

后端 未结 5 892
春和景丽
春和景丽 2020-12-10 23:44

The compiler is what takes this code, and translates it into the machine code

How can I see the original C code after compilation in bin

5条回答
  •  失恋的感觉
    2020-12-11 00:11

    This is commonly described as "turning hamburger back into cows."

    A decompiler will generate C source code that's functionally equivalent to the original code, but it won't have any of the original symbol names, and may not be structured the same. It may not even be very "readable".

    You cannot recover the original source from a compiled program.

提交回复
热议问题