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
Can one function call another?
What is the function of multilevel pointer in c?
write a programme that inputs a number by user and gives its multiplication table.
What is the Difference between Macro and ordinary definition?
3 Answers Bosch, Cognizant, College School Exams Tests, Motorola,
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38
differentiate built-in functions and user – defined functions.
A stack can be implemented only using array?if not what is used?
What is hash table in c?
what is the use of operator ^ in C ? and how it works?
What is volatile variable in c?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above