What is the difference between static link library and
dynamic link library?
Answer Posted / mat
Static libraries are linked at compile time. Dynamic
libraries are linked at runtime
| Is This Answer Correct ? | 52 Yes | 0 No |
Post New Answer View All Answers
What is the use of 'this' pointer?
What is the difference between the functions rand(), random(), srand() and randomize()?
What is private public protected in c++?
Define a pointer to a data member of the type pointer to pointer?
What is polymorphism and its type in c++?
What is the outcome of cout< a) 16 b) 17 c) 16.5
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
What are multiple inheritances (virtual inheritance)?
What is abstraction in c++?
Refer to a name of class or function that is defined within a namespace?
Does c++ have finally?
What are the basic data types used in c++?
Explain the isa and hasa class relationships.
What is a catch statement?
Write a program for Divide a number with 2 and Print the output ( NOTE: Check for divide by zero error).