What are dynamically linked and statically linked libraries?
Answer Posted / glibwaresoftsolutions
• Static linking: Combines library code into the final executable.
• Dynamic linking: Links libraries at runtime.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why do we write return 0 in c?
What is 2 d array in c?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
What is the difference between array and linked list in c?
Why is c used in embedded systems?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is pointer to pointer in c with example?
What is the difference between abs() and fabs() functions?
In C language, a variable name cannot contain?
What is pass by value in c?
What is the collection of communication lines and routers called?
Explain what is a pragma?
How was c created?
What is the difference between new and malloc functions?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402