Whether there can be main inside another main?If so how does
it work?
Answers were Sorted based on User's Feedback
Answer / namita
main()
{
main();
}
This code snippet will result in infinite loop.
| Is This Answer Correct ? | 43 Yes | 15 No |
Answer / divyansh
main marks the beginning of a program, 2 direct mains can't
be there as it will make the compiler dumb!(literally),in
this case it will give an error, or an infinite loop
operation will be executed.
| Is This Answer Correct ? | 21 Yes | 3 No |
Answer / nilanjan
Surely. . It will just act like a recursive version of
main(), which will run infinite times if there is no
limiting condition specified.
Sample:
#include <stdio.h>
int main()
{
int static i = 0;
printf("\nFile is too big.");
while(i == 0)
{
i++;
main();
}
return 0;
}
| Is This Answer Correct ? | 21 Yes | 3 No |
Answer / vara
there will be no error but the output will go in infinite
loop
main()
{
int a=2,b=3;
a=a+b;
b=a-b;
a=a-b;
printf("%d",&a);
printf("%d",&b);
main();
getch();
}
| Is This Answer Correct ? | 19 Yes | 5 No |
Answer / 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 |
Answer / gprabha
#include<stdio.h>
void main()
{
printf("main()");
main();
getch();
}
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / harinath
yes there can be
for example
main()
{
static int count=50;
printf("%d",count--);
while(count>0)
main();
}
here the output is numbers upto 1 then it comes out of it.
| Is This Answer Correct ? | 1 Yes | 1 No |
If errno contains a nonzero number, is there an error?
Is main an identifier in c?
What functions are used for dynamic memory allocation in c language?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
Write a program to check prime number in c programming?
Why c is called procedure oriented language?
What is console in c language?
How can variables be characterized?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
Which function in C can be used to append a string to another string?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
What is pre-emptive data structure and explain it with example?