128. Arithmetic Edge Cases-II

Question.3

A developer computes the midpoint of two uint8_t ADC readings:

uint8_t a = 250, b = 10;
uint8_t mid = (a + b) / 2;
printf("%u", mid);

What is the output?

Need Help? Refer to the Quick Guide below

Select Answer