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 |
What is array in C
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
What are pointers really good for, anyway?
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
write a program to find the given number is prime or not
2 Answers Accenture, Vasutech,
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?
2 Answers eClerx, Excel, kenexa,
What are file streams?
Why preprocessor should come before source code?
What are signals in C?
how to impliment 2 or more stacks in a single dimensional array ?
Explain null pointer.