Math, asked by mokasananirav, 2 months ago

void main()
{
m();
}
void m()
{
printf("hi");
m();
}


what is outpit

Answers

Answered by durgasrimurugan18
0

Answer:

it will print ' hi ' infinite times

Step-by-step explanation:

why because the m() method called itself recursively ,there is no condition here so it called repeatedly & print repeatedly .

Similar questions