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
which operator is known as dummy operator in c?
What is function prototype?
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.
Tell me can the size of an array be declared at runtime?
Explain the concept of "dangling pointers" in C.
how to make program without <> in libray.
What is the scope of global variable in c?
WAP TO ACCEPT STRING AND COUNT A COMES N TIMES B COMES N TIMES C COMES N TIMES D COMES N TIMES AND SO ON......... AT LAST UNTIL Z COMES N TIMES...............
what is the difference between unix os and linux os
What are the 5 types of inheritance in c ++?
How will you allocate memory to double a pointer?
Is that possible to store 32768 in an int data type variable?