Answer Posted / ravi joshi
Do you mean funtion(s) in libc? if not, it is very simple.
Irrespective or static or dynamic, the library always
contains an executable code but not linked. When application
uses the library, the code is linked at application link
time or load time depending on whether the library is static
or dynamic respectively.
for adding function in a library, just add the new function
as if you are adding any other function and recompile it as
a library. When linked with application, the new function
will become useable.
| Is This Answer Correct ? | 1 Yes | 8 No |
Post New Answer View All Answers
Is that possible to add pointers to each other?
What is the use of ?: Operator?
What are the different types of control structures?
Why can arithmetic operations not be performed on void pointers?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What is the use of bitwise operator?
Are pointers really faster than arrays?
What is a program flowchart and how does it help in writing a program?
What does *p++ do?
Write a program which returns the first non repetitive character in the string?
What is extern storage class in c?
What is meant by type specifiers?
where are auto variables stored? What are the characteristics of an auto variable?
write a program to create a sparse matrix using dynamic memory allocation.
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above