Which of the following statements are correct about the below program?
#include
int main()
{
int i = 0;
i++;
if(i <= 5)
{
printf("IndiaBIX\n");
exit(0);
main();
}
return 0;
}
Answer: B
No answer description available for this question.