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
Why c is called a mid level programming language?
4. main() { int c=- -2; printf("c=%d",c); }
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What is the role of this pointer?
How can you determine the size of an allocated portion of memory?
What is null character in c?
Explain how can I read and write comma-delimited text?
though sbi was nationalized why its not comes under nationalized banks and its comes under publicsector banks
3 Answers State Bank Of India SBI,
How reliable are floating-point comparisons?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
how to print value of e(exp1)up to required no of digits after decimal?
Write a c program to print the even numbers followed by odd numbers in an array without using additional array