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 |
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Why do we need a structure?
Is Exception handling possible in c language?
how to set Nth bit of a variable?
Explain what will the preprocessor do for a program?
What is pointer in c?
Can a pointer be static?
Can we add pointers together?
how many errors in c explain deply
write a program in c language to print your bio-data on the screen by using functions.
What type of function is main ()?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none