AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
Answer Posted / guest
Register storage Class
| Is This Answer Correct ? | 24 Yes | 0 No |
Post New Answer View All Answers
Write a program to find factorial of a number using recursive function.
What is the collection of communication lines and routers called?
#include
What is context in c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Why do we need functions in c?
What is assignment operator?
How can I automatically locate a programs configuration files in the same directory as the executable?
Can include files be nested?
What is difference between function overloading and operator overloading?
What is the scope of global variable in c?
Give the rules for variable declaration?
Write a program of prime number using recursion.
explain what is an endless loop?
Difference between goto, long jmp() and setjmp()?