I have a question on shared libraries vs static libraries loading time.
Assume that i have a executable foo.exe which uses liba, libb, libc. Also at a given time th
Static libraries are linked at compiled time, shared libraries are linked at runtime. Therefore, executables using static libraries amortize all their link time before even being written to disk.