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
why do some people write if(0 == x) instead of if(x == 0)?
Explain how to reverse singly link list.
Explain what is the difference between functions abs() and fabs()?
what is the role you expect in software industry?
How can you tell whether a program was compiled using c versus c++?
What does %d do?
What does. int *x[](); means ?
how can I convert a string to a number?
Explain the Difference between the New and Malloc keyword.
What are types of functions?
Can we declare a function inside a function in c?
What are derived data types in c?
What are the properties of union in c?
Write a code of a general series where the next element is the sum of last k terms.
What are the disadvantages of external storage class?