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
What is array in C
What is cohesion in c?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
What is a lookup table in c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Why we use void main in c?
Explain how can you determine the size of an allocated portion of memory?
How do you override a defined macro?
What is difference between function overloading and operator overloading?
Explain the meaning of keyword 'extern' in a function declaration.
What is string function c?
Where register variables are stored in c?
Write a program to print “hello world” without using semicolon?
What is c language used for?
What are the advantages and disadvantages of pointers?