Explain what is the advantage of a random access file?
No Answer is Posted For this Question
Be the First to Post Answer
What is the most efficient way to count the number of bits which are set in a value?
What is extern c used for?
What is the difference b/w Structure & Union?
char ch=10;printf("%d",ch);what is the output
Combinations of fibanocci prime series
What is the difference function call by value & function call by reference?
What is the meaning of int *x[]();?
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)
difference between native and cross compilers
what is the associativity of bitwise OR operator?
Explain the difference between #include "..." And #include <...> In c?
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?