main()
{
static int ivar=5;
printf("%d",ivar--);
if(ivar)
main();
}
Answer Posted / sindhujah
4
| Is This Answer Correct ? | 3 Yes | 12 No |
Post New Answer View All Answers
What are dangling pointers in c?
What is a const pointer in c?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What is the c value paradox and how is it explained?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What tq means in chat?
What is abstract data structure in c?
Explain how do you generate random numbers in c?
What is malloc calloc and realloc in c?
What is #line?
What is the difference between text and binary modes?
Is c++ based on c?
What is the difference between typedef and #define?
Explain what are its uses in c programming?
What is the difference between typedef struct and struct?