摘要:
恢复内容开始 恢复内容结束 阅读全文
posted @ 2017-09-10 16:44
刘趁趁
阅读(158)
评论(0)
推荐(0)
摘要:
恢复内容开始 恢复内容结束 阅读全文
posted @ 2017-09-10 15:43
刘趁趁
阅读(312)
评论(0)
推荐(0)
摘要:
#include ; int main() { short int a,b; a=32767; b=a+1; printf("a=%d,a+1=%d\n",a,b); return 0; } /*result: a=32767,a+1=-32768 analysis: 一个2字节的整型变量只能容纳-32768~32767范围内的数,无法表示大于3276... 阅读全文
posted @ 2017-09-10 10:00
刘趁趁
阅读(393)
评论(0)
推荐(0)