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 |
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
How can I pad a string to a known length?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Why c is called a middle level language?
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
What are enumerated types?
Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.
Explain the difference between null pointer and void pointer.
What are disadvantages of C language.
write a program to copy the string using switch case?
Differentiate fundamental data types and derived data types in C.
What are pointers? Why are they used?