cwe_191.c 258 Bytes Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #include <stdio.h> #include <stdbool.h> void integer_underflow_subtraction(){ int i; i = -2147483648; i = i - 1; printf("[integer_overflow_subtraction] %d\n", i); } main (void) { integer_underflow_subtraction(); }