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 / biren

we can't call a main function with in main.

Is This Answer Correct ?    7 Yes 32 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Describe static function with its usage?

608


Tell us something about keyword 'auto'.

662


What are c identifiers?

627


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

2268


Tell us the use of fflush() function in c language?

637






console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above

655


An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array

686


What are actual arguments?

643


Write a program on swapping (100, 50)

636


What is main function in c?

548


What is sizeof in c?

571


What is a good data structure to use for storing lines of text?

592


Why c is called a middle level language?

634


Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.

1620


What are keywords c?

599