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 is new() different from malloc()?
How do you define/declare constants in c++?
What is c++ mutable?
What is buffering in c++?
What are advantages of c++?
what is Member Functions in Classes?
Why are pointers used?
What is public, protected, private in c++?
What do you mean by function and operator overloading in c++?
Describe the syntax of single inheritance in C++?
Explain bubble sorting.
Is c++ a software?
What is the output of the following program? Why?
Write a struct time where integer m, h, s are its members?
Must accepts "Maestro Cards" Tax for bike should be less than 15 Total number of lanes is more than 10 Must provides monthly pass Write a method: boolean isGoodTollBridge(String[] cardsAccepted, String[] tollTax, boolean hasMonthlyPass, int numberOfLanes); String[] cardsAccepted A String array of names of card types accepted for payment of toll tax, it can be null if the toll does not accept any card String[] tollTax A String array of toll tax chart (say “Train : 300â€Â,â€ÂBullCart : 10â€Â) boolean hasMonthlyPass This parameter defines whether there is any monthly pass available or not int numberOfLanes This parameter defines the number of lanes for each side