Explain Linker and Loader

Answer Posted / anusha.r

The basic job of any linker or loader is simple: it binds
more abstract names to more concrete names, which permits
programmers to write code using the more abstract names.
That is, it takes a name written by a programmer such as
getline and binds it to ``the location 612 bytes from the
beginning of the executable code in module iosys.'' Or it
may take a more abstract numeric address such as ``the
location 450 bytes beyond the beginning of the static data
for this module'' and bind it to a numeric address

Is This Answer Correct ?    19 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is difference between array and structure in c?

582


What is the difference between text and binary i/o?

592


how to capitalise first letter of each word in a given string?

1434


Can a variable be both constant and volatile?

563


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5210






What is the use of void pointer and null pointer in c language?

632


Write a program to print fibonacci series without using recursion?

610


What are variables c?

622


What does calloc stand for?

651


an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational

812


What is structure padding in c?

628


What is the use of gets and puts?

604


What are types of preprocessor in c?

621


What is function in c with example?

631


What is the equivalent code of the following statement in WHILE LOOP format?

769