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 |
YBJBU6
When should the const modifier be used?
what is Structural oriented language? give some example of this language.....?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
i want to have a program to read a string and print the frequency of each character and it should work in turbo c
what is recursion in C
What is storage class?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
Do pointers store the address of value or the actual value of a variable?
write a function for strtok()??
what is the difference between malloc() and calloc() function?
How to use c/c++ code in JAVA
10 Answers CDAC, IBM, Satyam, Scope International,