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
How many bytes are occupied by near, far and huge pointers (dos)?
How do we make a global variable accessible across files? Explain the extern keyword?
How can you be sure that a program follows the ANSI C standard?
Can we replace the struct function in tree syntax with a union?
What is the use of putchar function?
Where are local variables stored in c?
What is string function c?
Where define directive used?
write a proram to reverse the string using switch case?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
What are the data types present in c?
difference between native and cross compilers
Explain what is the difference between a string and an array?
What is the equivalent code of the following statement in WHILE LOOP format?
What is self-referential structure in c programming?