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 are separators in c++?
Why do we use double in c++?
Is there structure in c++?
What is the prototype of printf function?
Const char *p , char const *p What is the difference between the above two?
State two differences between C and C++.
How will you call C functions from C ++ and vice-versa?
Explain the difference between realloc() and free() in c++?
What is the use of typedef?
what are the characteristics of Class Members in C++?
declare an array of structure where the members of the structure are integer variable float variable integer array char variable access all elements of the structure using dot operator and this pointer operator
Is the declaration of a class its interface or its implementation?
What is the function to call to turn an ascii string into a long?
Can you help me with this one? Make a program that when a user inputed a Product Name, it will display its price, and when the user inputed the quantity of the inputed product, it will show its total price. The output must be like this: Product Name: Price: Quantity: Total Price: ..this is the list of products to be inputed: Cellphone - 1500 Washing Machine - 5200 Television - 6000 Refrigirator - 8000 Oven - 2000 Computer - 11000 thanks..:D
Why main function is special in c++?