fun(int x)
{
if(x > 0)
fun(x/2);
printf("%d", x);
}
above function is called as:
fun(10);
what will it print?
}
Answer Posted / sunil v r
5,2,1
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain null pointer.
What is an identifier?
Why is struct padding needed?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
write a c program in such a way that if we enter the today date the output should be next day's date.
What is meant by 'bit masking'?
What oops means?
What is c mainly used for?
What is sizeof return in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is the difference between int main and void main in c?
What is a spanning Tree?
What is an auto keyword in c?
What standard functions are available to manipulate strings?