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

		
					

Loading

โœช Choose the correct option.

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


#include
void main ( )
{
int i, m=2, n=3;
for( i=0;m+n=5; m++)
printf("%d %d", m,n);
}

A. Compilation Error
B. 44622
C. 44623
D. 2 3 3 3