What are dynamically linked and statically linked libraries?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
• Static linking: Combines library code into the final executable.
• Dynamic linking: Links libraries at runtime.
v
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
• Static linking: Combines library code into the final executable.
• Dynamic linking: Links libraries at runtime.
| Is This Answer Correct ? | 0 Yes | 0 No |
program for reversing a selected line word by word when multiple lines are given without using strrev
a=5 a=a++/++a
Can you please explain the difference between strcpy() and memcpy() function?
different between overloading and overriding
What is use of #include in c?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
difference between native and cross compilers
in iso what are the common technological language?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
What is difference between structure and union in c?
wats SIZE_T meant for?