Explain Linker and Loader

Answer Posted / vadivel t

Linker is a stage before loader. Linker is a person who is
responsible for linking the different object file and the
outcome will be a executable file. Loader is a person who
reads the content of the executable file and place it into
memory. This code shall be executed when the operating
system control is coming to the loaded program.

Is This Answer Correct ?    9 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is static and volatile in c?

785


What are unions in c?

588


What is typedef?

683


What is difference between union All statement and Union?

632


What is a macro?

661






An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array

692


What is fflush() function?

649


What are the 4 types of functions?

579


How pointer is different from array?

587


Explain b+ tree?

634


Explain Basic concepts of C language?

652


What does 2n 4c mean?

728


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

635


a value that does not change during program execution a) variabe b) argument c) parameter d) none

699


Why do we write return 0 in c?

557