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
daily Routine of father
Can recursive program be written in C++?
Explain what are mutator methods in c++?
What are move semantics?
which of the following is not an secondary constant a) array b) real c) union
What are manipulators used for?
Are strings immutable in c++?
What is the difference between public and private data members?
A company pays its salespeople on a commission basis. The salespeople receive $200 per week plus 9 percent of their gross sales for that week. For example, a saleperson who sells $5000 worth of merchandise in a week receives $200 plus 9 percent of $5000, or a total of $650. You have been supplied with a list of items sold by each salesperson. The values of these items are as follows: Item Value A 239.99 B 129.75 C 99.95 D 350.89 Write a program that inputs one salesperson's items sold in a week (how many of item A? of item B? etc.) and calculates and displays that salesperson's earnings for that week.
What is a virtual destructor? Explain the use of it?
Is c++ free?
What is c++ library?
How long will it take to learn programming?
Difference between a homogeneous and a heterogeneous container
What is near, far and huge pointers? How many bytes are occupied by them?