Assuming int size is 4 bytes, what is going to happen when we compile and run the following program?
#include “stdio.h”
int main()
{
printf(“GeeksQuizn”);
main();
return 0;
}
Answer: D
No answer description available for this question.