void main()
{
static int i = 5;
if(--i)
{
main();
printf("%d
",i);
}
}
what would be output of the above program and justify your
answer?
}
Answer Posted / biren
we can't call a main function with in main.
| Is This Answer Correct ? | 7 Yes | 32 No |
Post New Answer View All Answers
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
What is string in c language?
Is c high or low level?
Write a program to show the change in position of a cursor using c
What is derived datatype in c?
What is difference between arrays and pointers?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What does c mean in basketball?
What is #error and use of it?
What is the most efficient way to count the number of bits which are set in an integer?
What is the hardest programming language?
Why is c faster?
What oops means?
What does struct node * mean?
What is main function in c?