Hi All,
Can any one let me know the correct diffrence between static library and dynamic library while using C language?
-------------
Sharique
Static library is the one when you link that with your executable it gets bundled along with it and the excutable size will be more.
Dynamic library is the one in which the library is only linked and during execution also it is only linked and if u are running more than one executable which uses the shared library then there will be only one copy of it in memory and all executables will only have a link to it
Raghuram