What is the difference between static link library and
dynamic link library?
Answer Posted / dinesh
The static linked library causes the corresponding information from libraries to be included in the executable DLL on the other hand inserts virtual address of memory. Thus the size of static linked file is larger than a static linked file. If we use dynamic linking the updates in library will also be effect the behavior of the file while not in static linking. Due to this reason dll is better but it can also sometimes make the program faulty due to library update.
| Is This Answer Correct ? | 9 Yes | 3 No |
Post New Answer View All Answers
Can I uninstall microsoft c++ redistributable?
Write about the members that a derived class can add?
What are the differences between new and malloc?
Write about the use of the virtual destructor?
Can recursive program be written in C++?
Which format specifier is used for printing a pointer value?
What are the advantages of using a pointer? Define the operators that can be used with a pointer.
Do we have to use initialization list in spite of the assignment in constructors?
What is the difference between interpreters and compilers?
What are formatting flags in ios class?
What are the extraction and insertion operators in c++?
Why is c++ difficult?
What are the syntactic rules to be avoid ambiguity in multiple inheritance?
What is math h in c++?
Define a conversion constructor?