What will be output of the following “C” code?
		
					

Loading

โœช Choose the correct option.

What will be output of the following “C” code?


int main( )
{
for( ; ;);
printf("Hello
");
return 0;
}

A. give compilation error
B. prints Hello infinite times
C. Runs in an infinite loop without printing anything
D. prints Hello once