127. Arithmetic Edge Cases-I

Question.1

A timer counter on an 8-bit MCU accumulates ADC readings:

uint8_t total = 250;
uint8_t sample = 10;
total += sample;
printf("%u", total);

What is the output?

Need Help? Refer to the Quick Guide below

Select Answer