Log in

View Full Version : Linker work duing execution


sish82
Oct 16, 2008, 02:10 AM
How linker work duing execution in c program

ÂmePerdut
Oct 16, 2008, 11:28 AM
The linker is a step before you can execute your application. The steps are as follows: Your source code is preprocessed and then it is compiled into an assembly object. Following this the assembly object is assembled into machine code. The last step following this is the linking of all the associated pieces into the final executable. Following this you can now execute the application.