What is a constant?
What do you mean by keywords in c?
What is the difference between Printf(..) and sprint(...) ?
What is void pointers in c?
Is it possible to have a function as a parameter in another function?
Where does the name "C" come from, anyway?
What is 2c dna?
What does c mean in standard form?
Explain the process of converting a Tree into a Binary Tree.
What is the difference between a free-standing and a hosted environment?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Write a program to swap two numbers without using the third variable?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
What are local static variables?