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
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What language is lisp written in?
What does sizeof int return?
Explain how can you tell whether two strings are the same?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What is auto keyword in c?
What is the acronym for ansi?
Explain how do you list a file’s date and time?
Why is c called "mother" language?
can we implement multi-threads in c.
What are qualifiers?
Define C in your own Language.
Why static is used in c?
What does %c do in c?