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



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

Answer / 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

More C Interview Questions

Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.

0 Answers  


What is include directive in c?

0 Answers  


Can the curly brackets { } be used to enclose a single line of code?

0 Answers  


What are the standard predefined macros?

0 Answers  


increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {

2 Answers   HCL, Syntel, TCS,






My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.

1 Answers  


main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?

7 Answers   AMCAT, HCL, Ramco, Zycus Infotech,


In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.

0 Answers  


What is the condition that is applied with ?: Operator?

0 Answers  


What is the use of sizeof () in c?

0 Answers  


can anyone suggest some site name..where i can get some good data structure puzzles???

0 Answers  


How can you avoid including a header more than once?

0 Answers  


Categories