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 a type library?
What is difference between c++ and c ++ 14?
What is a namespace in c++?
How do c++ struct differs from the c++ class?
Assume studentNames and studentIDs are two parallel arrays of size N that hold student data. Write a pseudocode algorithm that sorts studentIDs array in ascending ID number order such that the two arrays remain parallel.
What is the difference between the functions rand(), random(), srand() and randomize()?
What are the advantages of using typedef in a program?
A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Can c++ do everything c can?
Please explain the reference variable in c++?
Explain 'this' pointer and what would happen if a pointer is deleted twice?
Explain the concept of friend function in c++?
What are the differences between malloc() and calloc()?
What are the characteristics of friend functions?
What is cin clear () in c++?