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


Please Help Members By Posting Answers For Below Questions

Why is c so important?

763


Explain what is the difference between functions abs() and fabs()?

815


Why c language is called c?

727


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

837


how do you programme Carrier Sense Multiple Access

1699






What is scanf () in c?

818


What is the use of bitwise operator?

861


What is structure padding and packing in c?

788


Explain how can I read and write comma-delimited text?

907


How can I manipulate individual bits?

779


Do pointers need to be initialized?

768


int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

1333


How can I find the modification date of a file?

909


printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

826


What is array in C

894