When compiling, C produces object code before linking time. I wonder if object code is in the form of binary yet? If so, what happened next in the linking time?
|
Wikipedia says,
Another great site has much more detailed info and a useful diagram, here:
|
|||
|
|
|
Yes, object code is usually in binary form. Just try opening it in your favorite text editor. |
|||
|
|
|
Object files as produced by the C compiler essentially contain binary code with holes in each place where an address should go that is yet unknown (addresses of function from other files -- including libraries -- called, addresses of variables from other files that are accessed in this one, ...). It also contains a table indexed by symbol names ("x" or "_x" for variable If you are using Unix (or gcc on Windows), you can print the later table with the command "nm file.o". |
|||
|
|
