What is the output of the below program and how it is?
void main()
{
static int var=5;
printf("%d",var--);
if(var)
main();
}
Answer Posted / anuj awasthi
above the program output is = 54321
| Is This Answer Correct ? | 18 Yes | 5 No |
Post New Answer View All Answers
What oops means?
Explain about C function prototype?
Is r written in c?
What is line in c preprocessor?
What are the valid places to have keyword “break”?
Which function in C can be used to append a string to another string?
If null and 0 are equivalent as null pointer constants, which should I use?
Explain how can I pad a string to a known length?
What do you understand by normalization of pointers?
How will you find a duplicate number in a array without negating the nos ?
What is a program flowchart?
What is difference between union All statement and Union?
Why we not create function inside function.
what are the 10 different models of writing an addition program in C language?
Is calloc better than malloc?