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

Loading

โœช Choose the correct option.

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


int main ()
{
unsigned int i;
for (i = 10; i >= 0; i--)
printf ("%d", i);
}

A. prints numbers 10 – 0
B. prints nos 10 – 1
C. infinite loop
D. None of the above

Leave a Comment