// 请计算 0b11000001有符号整数结果是多少? #include int main() { signed char c = 0b11000001; printf("%d\n", c); return 0; }