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

YBJBU6

1 Answers  


When should the const modifier be used?

0 Answers  


what is Structural oriented language? give some example of this language.....?

1 Answers  


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300

4 Answers   Tieto,


i want to have a program to read a string and print the frequency of each character and it should work in turbo c

3 Answers   Persistent, Wipro,






what is recursion in C

0 Answers   Cap Gemini,


What is storage class?

0 Answers  


void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }

5 Answers  


Do pointers store the address of value or the actual value of a variable?

0 Answers   Fidelity,


write a function for strtok()??

2 Answers   Verifone,


what is the difference between malloc() and calloc() function?

1 Answers  


How to use c/c++ code in JAVA

10 Answers   CDAC, IBM, Satyam, Scope International,


Categories