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
Define circular linked list.
Differentiate between Macro and ordinary definition.
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
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What is an operator?
What are different types of variables in c?
Why array is used in c?
Explain void pointer?
Explain how do you sort filenames in a directory?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Explain the bubble sort algorithm.
Describe the order of precedence with regards to operators in C.
Write a Program to accept different goods with the number, price and date of purchase and display them
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above