《深入理解计算机系统》 练习题2.31答案
练习题2.31你的同事对你补码加法溢出条件的分析有些不耐烦了,他给出了一个函数tadd_ok的实现,如下//determin whether arguments can be added without overflow//WARNING: THIS code is buggyint tadd_ok(int x, int y) { int sum = x+y; re