Whether there can be main inside another main?If so how does
it work?
Answer Posted / rajdesai143
yes.There can be any no of main inside the main.But one
static main should be required .In that we can call any no
of times it just works as recursive.
Since one static main is required because (astart) requires
that . Its a startup code
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
When is a null pointer used?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
What is the role of && operator in a program code?
what do the 'c' and 'v' in argc and argv stand for?
What is the equivalent code of the following statement in WHILE LOOP format?
Where are some collections of useful code fragments and examples?
Is return a keyword in c?
What is operator precedence?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
how is the examination pattern?
What does c mean in standard form?
Who is the founder of c language?
What is structure in c definition?
What does %p mean?
Explain the bubble sort algorithm.