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
Why is c so important?
Explain what is the difference between functions abs() and fabs()?
Why c language is called c?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
how do you programme Carrier Sense Multiple Access
What is scanf () in c?
What is the use of bitwise operator?
What is structure padding and packing in c?
Explain how can I read and write comma-delimited text?
How can I manipulate individual bits?
Do pointers need to be initialized?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
How can I find the modification date of a file?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What is array in C