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
Explain what are run-time errors?
Write a program to find the biggest number of three numbers in c?
What is the size of structure pointer in c?
What is the size of enum in c?
Write a program to print fibonacci series without using recursion?
What is the use of bit field?
Subtract Two Number Without Using Subtraction Operator
Explain how can I remove the trailing spaces from a string?
Explain logical errors? Compare with syntax errors.
What is the difference between class and object in c?
Is c compiled or interpreted?
Explain what are binary trees?
Why c is called procedure oriented language?
What is a nested formula?
What is wild pointer in c?