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
How can we read/write Structures from/to data files?
Difference between overloaded functions and overridden functions
What would happen on forgetting [], while deallocating an array through new?
What is object in c++ wikipedia?
What do you mean by public protected and private in c++?
What is the best c++ ide?
What is an accessor in c++?
What is token c++?
What are the 3 levels of programming languages?
How many types of modularization are there in c++?
Can we use this pointer in a class specific, operator-overloading function for new operator?
give me an example for testing a program showing the test path .show how the test is important and complex.
How c functions prevents rework and therefore saves the programers time as wel as length of the code ?
Explain the virtual inheritance in c++.
Why was c++ created?