What is the difference between static link library and
dynamic link library?

Answers were Sorted based on User's Feedback



What is the difference between static link library and dynamic link library?..

Answer / mat

Static libraries are linked at compile time. Dynamic
libraries are linked at runtime

Is This Answer Correct ?    52 Yes 0 No

What is the difference between static link library and dynamic link library?..

Answer / vivek kumar kanojia

Above ans is correct and one more thing..
static library is faster than dynamic library

Is This Answer Correct ?    31 Yes 6 No

What is the difference between static link library and dynamic link library?..

Answer / kiran

above answer is correct and..
the excutable exe size will be larger when we build exe
with static library compared to dynamic library

Is This Answer Correct ?    18 Yes 3 No

What is the difference between static link library and dynamic link library?..

Answer / achal ubbott

Above answers are correct. In case of Dynamic Library your
executable will look up for the code at run time. E.g. when
running some exe it looks for help from some .dll files
provided by windows operating system. So we call this
dynamic linking.

Is This Answer Correct ?    11 Yes 1 No

What is the difference between static link library and dynamic link library?..

Answer / 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

What is the difference between static link library and dynamic link library?..

Answer / 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

What is the difference between static link library and dynamic link library?..

Answer / sameer patel

Above answer is correct and also say that the dynamic library is executable file and shared the library for functions.
Where static library execute module and provide information needed of run time....

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More C++ General Interview Questions

What is the use of pointer in c++ with example?

0 Answers  


What are the storage qualifiers?

0 Answers  


Write a C++ program to sort digits of all the 4 digit number and display the sorted 4 digit number

1 Answers   TATA, TCS,


Describe the syntax of single inheritance in C++?

0 Answers   Fidelity,


Can a new be used in place of old mallocq? If yes, why?

0 Answers  






What are guid? Why does com need guids?

0 Answers  


Will a C compiler always compile C++ code a) Yes b) No c) Only optimized compilers

0 Answers  


Can you please explain the difference between using macro and inline functions?

0 Answers  


What's the "software peter principle”?

0 Answers  


What is the arrow operator in c++?

0 Answers  


What is a manipulator in c++?

0 Answers  


What is boyce codd normal form in c++?

0 Answers  


Categories