What is the difference between static link library and
dynamic link library?
Answer Posted / 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 |
Post New Answer View All Answers
How would you use qsort() function to sort an array of structures?
Is there finally in c++?
How to declare a function pointer?
Why is c++ is better than c?
Does c++ have string data type?
What is split a string in c++?
Why do we use pointers in c++?
Array base access faster or pointer base access is faster?
What sorting algorithm does c++ use?
What is the most powerful coding language?
Which one is better- macro or function?
What are activex and ole?
Is c++ a difficult language?
How do you establish a has-a relationship?
What would happen on forgetting [], while deallocating an array through new?