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

Loading

โœช Choose the correct option.

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


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

A. 10 11 12 13 14
B. 10 10 10 10 10
C. 0 1 2 3 4
D. Infinite loop