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;
for( i=0; i<10; i++,printf("%d", i));
}

A. 2345678910
B. 123456789
C. Compilation Error
D. 12345678910