4.5 Overflow and Underflow: Knowledge Check
A variable of type unsigned char stores a value of 255. If the variable value is decremented, what exception will occur?
No Exception
A variable of type signed int stores a value of zero. If the variable value is incremented what exception will occur?
No Exception.
A variable of type signed int stores a value of -2147483648, If the variable value is decremented what exception will occur?
Underflow
A variable of type unsigned int stores a value of zero. If the variable value is decremented, what exception will occur?
Underflow
A variable of type unsigned short stores a value of zero. If the variable value is decremented, what exception will occur?
Underflow
