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
What is main () in c language?
What is the purpose of & in scanf?
Explain what is the difference between null and nul?
List some basic data types in c?
Who developed c language and when?
What is methods in c?
What are the __date__ and __time__ preprocessor commands?
Explain the bubble sort algorithm.
Explain why can’t constant values be used to define an array’s initial size?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
Why does the call char scanf work?
Why is a semicolon (;) put at the end of every program statement?
What is the size of empty structure in c?
What is variable initialization and why is it important?
What are lookup tables in c?