main()
{
static int ivar=5;
printf("%d",ivar--);
if(ivar)
main();
}
Answer Posted / suresh kallam
4 3 2 1 0
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What are enums in c?
What tq means in chat?
Do variables need to be initialized?
What is the difference between malloc calloc and realloc in c?
Can an array be an Ivalue?
How is actual parameter different from the formal parameter?
Explain what does the function toupper() do?
What is pass by reference in c?
What are the restrictions of a modulus operator?
How can I read a binary data file properly?
What is the difference between #include and #include 'file' ?
What does main () mean in c?
What functions are used for dynamic memory allocation in c language?
What is the difference between ++a and a++?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?