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
What is the default access level?
How is modularity introduced in C++?
What do you mean by translation unit in c++?
You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()
What is a set in c++?
What are the different types of polymorphism in c++?
Write a short code using c++ to print out all odd number from 1 to 100 using a for loop
How do I use arrays in c++?
What are the defining traits of an object-oriented language?
How do you establish an is-a relationship?
How many types of classes are there in c++?
What is virtual base class?
what is pre-processor in C++?
Explain function overloading
Explain the advantages of using friend classes.