difference between loading and linking



difference between loading and linking..

Answer / madhumatee

Linker is a program that helps to link various pieces of
code or data together to form a single executable file that
can be loaded into memory
Loader is a program that helps in copying the program image
from hard disk to main memory in order to put the program
in a ready to run state.

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More C Interview Questions

what is the program to display your name in any color?

2 Answers   HCL,


char p="data"; printf(p);

2 Answers  


errors in computer programmes are called

1 Answers   NET,


What are the modifiers available in c programming language?

0 Answers  


int far *near * p; means

0 Answers   Honeywell,






What is string concatenation in c?

0 Answers  


what do you mean by inline function in C?

0 Answers   IBS, TCS,


program to find out date after adding 31 days to a date in the month of febraury also consider the leap year

0 Answers  


how to find your architecture is LittleEndian or BigEndian?

1 Answers  


What does emoji p mean?

0 Answers  


What is the basic structure of c?

0 Answers  


. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none

9 Answers   Oracle,


Categories