Taking an example,differentiate b/w loader and linker ?

Answer Posted / banavathvishnu

Loader comes into picture after it is build successfully
when u run the program, Loader loades the program in to
main memory and will execute.

Linker is one which links library files with the object
files.

Linker comes into picture at the build time of the program.

Is This Answer Correct ?    9 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the different types of constants?

631


Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?

568


What is d scanf?

580


GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)

673


Explain setjmp()?

645






write a program to copy the string using switch case?

2390


What is function and its example?

615


What are the 5 data types?

585


How is actual parameter different from the formal parameter?

583


Is c is a high level language?

609


#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.

5166


What are the different types of control structures in programming?

650


What are dangling pointers? How are dangling pointers different from memory leaks?

607


Can we change the value of constant variable in c?

564


Wt are the Buses in C Language

2740