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
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
How will you allocate memory to double a pointer?
different between overloading and overriding
What is modifier & how many types of modifiers available in c?
What is difference between %d and %i in c?
Discuss the function of conditional operator, size of operator and comma operator with examples.
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
how can i get this by using for loop? * ** * **** * ******
WHAT IS FLOAT?
Why is structure important for a child?