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 |
How to add two numbers with using function?
In C, What is the #line used for?
2. What does static variable mean?
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
what is the difference between strcpy() and memcpy() function?
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC
a simple program in c language
What is quick sort in c?
Explain that why C is procedural?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
c program to print a name without using semicolon
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?