What is inside .lib file of Static library, Statically linked dynamic library and dynamically linked dynamic library?
For a static library, the .lib file contains all the code and data for the library. The linker then identifies the bits it needs and puts them in the final executable. For a dynamic library, the .lib file contains a list of the exported functions and data elements from the library, and information about which … Read more