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
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
Why & is used in c?
Is there any book to know about Basics of C Language?
How many types of operators are there in c?
write a function for strtok()??
Where are some collections of useful code fragments and examples?
write the program to find multiplication of 2-D matrix??????????
What is the difference between void main() and void main (void) give example programme?
Can a program have two main functions?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What is the use of getch ()?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above