Whether there can be main inside another main?If so how does
it work?
Answer Posted / namita
main()
{
main();
}
This code snippet will result in infinite loop.
| Is This Answer Correct ? | 43 Yes | 15 No |
Post New Answer View All Answers
What is scope and lifetime of a variable in c?
If I have a char * variable pointing to the name of a function ..
Explain what is the benefit of using an enum rather than a #define constant?
What is queue in c?
What is double pointer in c?
Why clrscr is used after variable declaration?
Are local variables initialized to zero by default in c?
how is the examination pattern?
Explain how can I convert a string to a number?
What is 2 d array in c?
How we can insert comments in a c program?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What is integer constants?
Why we not create function inside function.
Can one function call another?