Answer Posted / ashwinishaligram308
Linker is the one which links libraries and loader is the
program which load the proacess in to memory for execution
| Is This Answer Correct ? | 20 Yes | 5 No |
Post New Answer View All Answers
What is binary tree in c?
What is a const pointer?
What is the benefit of using an enum rather than a #define constant?
Why functions are used in c?
#include
When should a type cast be used?
What is the use of getchar functions?
Explain how can you restore a redirected standard stream?
Can a variable be both const and volatile?
Write a simple code fragment that will check if a number is positive or negative.
How to find a missed value, if you want to store 100 values in a 99 sized array?
Difference between goto, long jmp() and setjmp()?
Write a program to identify if a given binary tree is balanced or not.
What is the use of linkage in c language?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }