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
How can I send mail from within a c program?
Distinguish between actual and formal arguments.
What are the application of void data type in c?
Is int a keyword in c?
What is the difference between the expression “++a” and “a++”?
how do you execute a c program in unix.
Are global variables static in c?
What are the advantages of using macro in c language?
What are the different types of control structures?
What does c mean in standard form?
How do I read the arrow keys? What about function keys?
What is #line in c?
using only #include
What is #pragma statements?
Which is better oop or procedural?