What will be the output of the following program on GCC?

		
					

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC?

#include 
void main(){
static int i;
for(;;)
if(i+++"Good Morning")
printf("Hello");
else
break;
}

A. Hello
B. prints “Hello” infinite times
C. compiler error
D. No output, No error