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?
Select Answer
260
4
0
Undefined behavior