127. Arithmetic Edge Cases-I

Question.4

A developer subtracts two unsigned byte values in a sensor delta calculation:

uint8_t current = 5;
uint8_t previous = 10;
uint8_t delta = current - previous;
printf("%u", delta);

What is the output?

Need Help? Refer to the Quick Guide below

Select Answer