|
|
|
|
|
by alihilal94
2225 days ago
|
|
Generally speaking, a library is a file contains compiled binary code, they are too useful as they provide the concept of reusability and allow for fast compilation time in modular applications. However, there are mainly two types of libraries, Static Libraries which are linked to the executable at compile time. Dynamic libraries at the other hand are linked to the executable at runtime. That makes them much more complicated and open the way for many possible hurdles which will be discussed in this article. |
|