main()
{
static int ivar=5;
printf("%d",ivar--);
if(ivar)
main();
}
Answer Posted / amit
In GCC compiler 54321 is the correct answer.
| Is This Answer Correct ? | 29 Yes | 0 No |
Post New Answer View All Answers
Why pointers are used in c?
write a program to find the given number is prime or not
What is volatile, register definition in C
What is time complexity c?
Explain the difference between ++u and u++?
What is else if ladder?
Explain the difference between getch() and getche() in c?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
Explain what is meant by high-order and low-order bytes?
Whats s or c mean?
What is %g in c?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Explain modulus operator. What are the restrictions of a modulus operator?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
The statement, int(*x[]) () what does in indicate?