#include #include int main(void){ char c = 128; printf("c: %d\n", c); char c1 = -129; printf("c1: %d\n", c1); return 0; }