Is main() is used in the program,,see below example?
void main()
{
int i;
for(i=0;i<10;i++)
main();
}
Then what is the output of the program?
Answer Posted / harshitha
the loop will be repeated for 10 times
| Is This Answer Correct ? | 2 Yes | 12 No |
Post New Answer View All Answers
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
c program to compute AREA under integral
How can I dynamically allocate arrays?
Is that possible to add pointers to each other?
explain how do you use macro?
What is the advantage of an array over individual variables?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What happens if you free a pointer twice?
Differentiate between static and dynamic modeling.
What is typeof in c?
What are the different types of linkage exist in c?
How was c created?
What are the different types of control structures in programming?
provide an example of the Group by clause, when would you use this clause
What is uint8 in c?