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

How pointers are declared?

0 Answers  


What are the ways to a null pointer can use in c programming language?

0 Answers  


Is c still used?

0 Answers  


How to write a C program to determine the smallest among three nos using conditional operator?

2 Answers   Google,


can we initialize all the members of union?

2 Answers  






Do you have any idea about the use of "auto" keyword?

0 Answers  


Why clrscr is used after variable declaration?

0 Answers  


how to get the starting address of file stored in harddisk through 'C'program.

2 Answers   Siemens,


what is pointer ?

10 Answers   Kernex Micro Systems,


Why we write conio h in c?

0 Answers  


how to make program without <> in library.

1 Answers   ADITI,


write a program to find lcm and hcf of two numbers??

1 Answers  


Categories