What is the output of the following problem ?

		
					

Loading

โœช Choose the correct option.

What is the output of the following problem ?


#include
int main()
{
int i;
for (i=9;i<13; i++)
printf("%d %0x ",i,i);
return 0;
}

A. 9 9 10 10 11 11 12 12
B. 9 10 11 12
C. 9 9 10 b 11 b 12 c
D. Compilation Error