Taking an example,differentiate b/w loader and linker ?



Taking an example,differentiate b/w loader and linker ? ..

Answer / banavathvishnu

Loader comes into picture after it is build successfully
when u run the program, Loader loades the program in to
main memory and will execute.

Linker is one which links library files with the object
files.

Linker comes into picture at the build time of the program.

Is This Answer Correct ?    9 Yes 4 No

Post New Answer

More C Interview Questions

What language is windows 1.0 written?

0 Answers  


write a program to find the given number is prime or not

2 Answers   Accenture, Vasutech,


What are the key features in c programming language?

0 Answers  


struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?

1 Answers   Wipro,


code snippet for creating a pyramids triangle ex 1 2 2 3 3 3

4 Answers  






program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5

8 Answers   Infosys,


struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā€œ%dā€,s.x); }

2 Answers   Vector,


Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?

4 Answers   TCS,


If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???

3 Answers   Amdocs, IBM,


write a function which accept two numbers from main() and interchange them using pointers?

3 Answers  


How can I find the day of the week given the date?

0 Answers  


Explain what is a stream?

0 Answers  


Categories