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

What is this infamous null pointer, anyway?

609


What are high level languages like C and FORTRAN also known as?

684


Why main is used in c?

587


What does the error message "DGROUP exceeds 64K" mean?

725


A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none

729






‎How to define structures? · ‎

624


What is an example of structure?

588


Explain pointers in c programming?

632


Do you know the difference between malloc() and calloc() function?

613


Is malloc memset faster than calloc?

614


How many keywords (reserve words) are in c?

618


What is array of structure in c programming?

749


using for loop sum 2 number of any 4 digit number in c language

1732


What language is windows 1.0 written?

573


How do c compilers work?

608