Hello friends,
How Many type of Linking..?
There are two type of linking.
Static Linking - In this type of linking, linker links the actual code of the library direct into the code section of the executable.
Dynamic Linking - Dynamic linking does not link the actual code of the external functions. Instead it prepares a list of imported functions in .idata section and a stub code which actually jumps to the external function by address.
Dynamic Linking can be divided into two category
Implicit Dynamic Linking and Explicit Dynamic Linking.