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
What is extern c++?
What do you mean by funtion prototype?
Explain what is polymorphism in c++?
What is fflush c++?
What is the purpose of templates in c++?
what is data encapsulation in C++?
What is the main purpose of overloading operators?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
What are references in c++? What is a local reference?
Why is it necessary to use a reference in the argument to the copy constructor?
Write about the stack unwinding?
What is the protected keyword used for?
What is algorithm in c++ programming?
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.
What is ofstream c++?