No No No No No.
C is a compiled language.
In the good old days, it was first pre-processed to deal with macros and the like and then converted to assembly language. Then it was assembled to machine code and linked to anything else that it might need.
The upshot of all of this is that the .exe is nothing like the source you started out with.
Although the assmebly phase may now be skipped, the principles are still the same. When the binary (.exe) is produced, all of the language is lost. All you are left with is something that tells a processor what to do.
There are decompilers around that attempt to reverse engineer the binary back to some form of source but the coversion will leave you with barely readable C code with no sensible variable names or function names.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.