127. Arithmetic Edge Cases-I

Question.5

A developer counts down a delay loop using an unsigned counter:

uint8_t i;
for (i = 5; i >= 0; i--) {
   delay_ms(100);
}

What happens?

Need Help? Refer to the Quick Guide below

Select Answer