Q. Assuming int size is 4 bytes, what is going to happen when we compile and run the following program?
Code:#include “stdio.h”
int main()
{
printf(“GeeksQuizn”);
main();
return 0;
}
β
Correct Answer: (D)
GeeksQuiz would be printed until stack overflow happens for this program.