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
show how link list can be used to repersent the following polynomial i) 5x+2
How we can insert comments in a c program?
What is meant by type specifiers?
What is substring in c?
using for loop sum 2 number of any 4 digit number in c language
What are register variables in c?
Is fortran faster than c?
What is property type c?
Describe the steps to insert data into a singly linked list.
What is an lvalue?
Explain the use of 'auto' keyword
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
What are the types of macro formats?
What is a 'null pointer assignment' error?
How can I find out the size of a file, prior to reading it in?