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 |
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
What is the difference between NULL and NUL?
What's a good way to check for "close enough" floating-point equality?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
What is the purpose of scanf() and printf() functions?
how can f be used for both float and double arguments in printf? Are not they different types?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Explain how can I open a file so that other programs can update it at the same time?
how to sort two array of characters and make a new array of characters.
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
What is union and structure in c?