void main()
{
m();
}
void m()
{
printf("hi");
m();
}
what is outpit
Answers
Answered by
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