What is the difference between static link library and
dynamic link library?
Answer Posted / pushpalatha
Dynamic linking differs from static linking in that it
allows an executable module (either a .dll or .exe file) to
include only the information needed at run time to locate
the executable code for a DLL function. In static linking,
the linker gets all of the referenced functions from the
static link library and places it with your code into your
executable.
Using dynamic linking instead of static linking offers
several advantages. DLLs save memory, reduce swapping, save
disk space, upgrade easier, provide after-market support,
provide a mechanism to extend the MFC library classes,
support multilanguage programs, and ease the creation of
international versions.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What does override mean in c++?
Can comments be nested?
What is meant by a delegate?
What is a terminating character in c++?
Explain the uses oof nested class?
List the types of polymorphism in c++?
Can manipulators fall in love?
Explain the properties and principles of oop.
What is purpose of new operator?
What new()is different from malloc()?
What is friend class in c++ with example?
What is polymorphism in c++? Explain with an example?
Do class declarations end with a semicolon? Do class method definitions?
What is the difference between struct and class?
Write a C++ Program to check whether a number is prime number or not?