Answer Posted / 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 View All Answers
What are header files and what are its uses in C programming?
Explain the properties of union.
Explain what are its uses in c programming?
Explain the properties of union. What is the size of a union variable
What is multidimensional arrays
What is formal argument?
How #define works?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What is the use of typedef in c?
What does the message "automatic aggregate intialization is an ansi feature" mean?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
How can I sort more data than will fit in memory?
how to construct a simulator keeping the logical boolean gates in c
Explain what is a const pointer?