摘要: csapp page124. practice problem 2.35/* Determine whether arguments can be multiplied without overflow */int tmult_ok(int x, int y){ int p = x*y; ... 阅读全文
posted @ 2014-06-24 22:33 Agentgamer 阅读(1124) 评论(0) 推荐(2)