As i know
.c source goes to assembly then it goes to object file, object files then are linking to each other(and to libraries) and we get application we can run from os.
But what does object file look like?
Does it look like .asm or more like .exe?
How are instructions inside object file stored? As “mov add call” pseudocode or as machine senseless code? (is the question)
As i know .c source goes to assembly then it goes to object file,
Share
Machine code. You can use
gcc -Sto get assembly andgcc -cto get object files.