A routine usually part of the operation system that loads a program into memory prior to execution

a) linker

b) loader

c) preprocessor

d) compiler


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What are pointers? Why are they used?

0 Answers  


struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

0 Answers  


program to find the second largest word in a paragraph amongst all words that repeat more thn twice

4 Answers   CTS, iGate,


main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }

8 Answers   Vector,


What is the difference between text and binary i/o?

0 Answers  






What is an auto variable in c?

0 Answers  


What is the difference between near, far and huge pointers?

0 Answers  


c program for searching a student details among 10 student details

0 Answers  


Explain the advantages of using macro in c language?

0 Answers  


Why isn't it being handled properly?

0 Answers  


what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);

4 Answers   TCS,


How do you redirect a standard stream?

0 Answers  


Categories