#include<stdio.h> 
int mai

Loading

โœช Choose the correct option.

#include 
int main() {
int i = 0;
i++;
if(i <= 5) {
printf("Hello World ");
exit(0);
main();
}
return 0;
}

A. The program prints 'Hello World' 5 times
B. The program prints 'Hello World' 1 time.
C. The call to main() after exit() doesn't materialize.
D. The compiler reports an error since main() cannot call itself.

Leave a Comment