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

Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }

3 Answers   IBM,


What are the different types of errors?

0 Answers  


Why is event driven programming or procedural programming, better within specific scenario?

0 Answers   Wipro,


What is pointer to pointer in c?

0 Answers  


What is scanf () in c?

0 Answers  






A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile

0 Answers  


How do you declare a variable that will hold string values?

0 Answers  


What is typeof in c?

0 Answers  


What does void main () mean?

0 Answers  


What is the difference between procedural and functional programming?

0 Answers  


What are the valid places to have keyword “break”?

0 Answers  


write a program to find lcm and hcf of two numbers??

1 Answers  


Categories