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

wat are the two methods for swapping two numbers without using temp variable??

2 Answers  


Why is it important to memset a variable, immediately after allocating memory to it ?

0 Answers  


wat are the two methods for swapping two numbers without using temp variable??

2 Answers  


send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?

0 Answers   TCS,


What are the data types present in c?

0 Answers  


Is struct oop?

0 Answers  


Explain the advantages and disadvantages of macros.

0 Answers   TCS,


What do you mean by c what are the main characteristics of c language?

0 Answers  


write a c prog for removing duplicate character from an array and sorting remaining elements using a single array

1 Answers  


Calculate 1*2*3*____*n using recursive function??

0 Answers  


write a program to copy a string without using a string?

2 Answers  


What is signed and unsigned?

0 Answers  


Categories