void main()
{
static int i = 5;
if(--i)
{
main();
printf("%d
",i);
}
}
what would be output of the above program and justify your
answer?
}
Answer Posted / senthil kumar.s
ans:0
| Is This Answer Correct ? | 1 Yes | 13 No |
Post New Answer View All Answers
What is pointers in c?
Tell me when would you use a pointer to a function?
How do you convert strings to numbers in C?
Can you write the algorithm for Queue?
Discuss the function of conditional operator, size of operator and comma operator with examples.
Are the expressions * ptr ++ and ++ * ptr same?
Differentiate between the = symbol and == symbol?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
Explain what is the benefit of using const for declaring constants?
How reliable are floating-point comparisons?
define string ?
Is a house a shell structure?
What is d scanf?
What is binary tree in c?
Describe wild pointers in c?