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
Explain what is page thrashing?
What are valid signatures for the Main function?
Is c easy to learn?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
How do c compilers work?
How can you draw circles in C?
What is the translation phases used in c language?
How can you read a directory in a C program?
What is a macro, and explain how do you use it?
Are enumerations really portable?
What is the general form of function in c?
Which is best book for data structures in c?
What is ambagious result in C? explain with an example.
how many errors in c explain deply
Why is c so popular?