Explain Linker and Loader

Answer Posted / ashwinishaligram308

Linker is the one which links libraries and loader is the
program which load the proacess in to memory for execution

Is This Answer Correct ?    20 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

In c programming, explain how do you insert quote characters (? And ?) Into the output screen?

753


What are multibyte characters?

637


What math functions are available for integers? For floating point?

614


What is context in c?

528


What is difference between far and near pointers?

594






How do I determine whether a character is numeric, alphabetic, and so on?

614


Why is c called "mother" language?

849


console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above

645


How can my program discover the complete pathname to the executable from which it was invoked?

650


What is a const pointer?

620


What is call by value in c?

545


What is chain pointer in c?

591


WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?

1848


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

1851


Tell me is null always defined as 0(zero)?

660