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


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Can one function call another?

0 Answers  


What is the function of multilevel pointer in c?

0 Answers  


write a programme that inputs a number by user and gives its multiplication table.

2 Answers  


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

1 Answers  


differentiate built-in functions and user – defined functions.

0 Answers  


A stack can be implemented only using array?if not what is used?

3 Answers   InterGlobal,


What is hash table in c?

0 Answers  


what is the use of operator ^ in C ? and how it works?

2 Answers  


What is volatile variable in c?

0 Answers  


In c programming, explain how do you insert quote characters (? And ?) Into the output screen?

0 Answers  


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

0 Answers  


Categories