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 is a pointer variable declared?
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }
What is union in c?
What is binary tree in c?
Why dont c comments nest?
If fflush wont work, what can I use to flush input?
Write a C program that reads a series of strings and prints only those ending in "ed"
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
whats the use of header file in c?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples