โช 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);
}
int main ()
{
unsigned int i;
for (i = 10; i >= 0; i--)
printf ("%d", i);
}