Role of linking, object files and executables
- by Tim
For a C or assembly program that does not require any other library, will linking
be necessary? In other words, will conversion from C to Assembly and/or from Assembly to an object file be enough without being followed by linking?
If linking is still needed, what
will it do, given that there is just one object file which doesn't
need a library to…