Answer Posted / vivek
By library its generally meant an executable library. In
which case one can write a wrapper for the existinig DLL.
This will ofcourse require one to know the function
prototype of all exported functions.
If its a static library then simple write another lib and
add the existing one of the libs to link against.
| Is This Answer Correct ? | 2 Yes | 16 No |
Post New Answer View All Answers
What are Macros? What are its advantages and disadvantages?
What are the advantages and disadvantages of c language?
What does 3 periods mean in texting?
Write a program to print ASCII code for a given digit.
Do variables need to be initialized?
What is wild pointer in c with example?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Differentiate between the expression “++a” and “a++”?
How to get string length of given string in c?
How are pointers declared in c?
Is file a keyword in c?
What are the characteristics of arrays in c?
Which is better malloc or calloc?
Explain what is meant by high-order and low-order bytes?
Is printf a keyword?