127. Arithmetic Edge Cases-I

Question.2

A developer adds two int8_t sensor offsets:

int8_t a = 120;
int8_t b = 10;
int8_t c = a + b;
printf("%d", c);

What does the C standard say about the value of c?

Need Help? Refer to the Quick Guide below

Select Answer