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

How to add two numbers with using function?

4 Answers  


In C, What is the #line used for?

2 Answers  


2. What does static variable mean?

2 Answers  


write a program that will read the temperature in Celsius and convert that into Fahrenheit.

1 Answers  


what is the difference between strcpy() and memcpy() function?

2 Answers  


please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC

2 Answers   Mphasis,


a simple program in c language

5 Answers   IBM,


What is quick sort in c?

0 Answers  


Explain that why C is procedural?

0 Answers   Maveric, Verifone,


#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


c program to print a name without using semicolon

9 Answers   TCS, Wipro,


#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?

3 Answers  


Categories