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?
Select Answer
-5
251
0
Undefined behavior