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 / sireesha
54321
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
code for quick sort?
When should a far pointer be used?
string reverse using recursion
Why doesnt long int work?
What is zero based addressing?
Explain what is a pragma?
Explain how do you generate random numbers in c?
Why is it that not all header files are declared in every C program?
What are the types of bitwise operator?
How can I use a preprocessorif expression to ?
What are the advantages of c preprocessor?
What is memcpy() function?
What is a rvalue?
What is string function c?
What are header files and explain what are its uses in c programming?