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
Write about the role of c++ in the tradeoff of safety vs. Usability?
What is lambda expression c++?
Is nan a c++?
Is there any function that can skip certain number of characters present in the input stream?
What is #include iostream h in c++?
what is Member Functions in Classes?
If I is an integer variable, which is faster ++i or i++?
What is prototype for that c string function?
What is the use of setprecision in c++?
Explain dangling pointer.
What is == in programming?
How can you specify a class in C++?
write a porgram in c++ that reads an integer and print the biggest digit in the number
Write about the stack unwinding?
What does std :: flush do?