标题:c语言求助:无符号与有符号整数
取消只看楼主
yhxf_bclt
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2011-11-7
结帖率:0
已结贴  问题点数:20 回复次数:0 
c语言求助:无符号与有符号整数
#include <stdio.h>
#include <string.h>

int main()
{
int x = 2;
char * str = "abcd";
int p =  (x - strlen(str) )/1;
int y =  (x - strlen(str) )/2;
int z =  (x - strlen(str) );
int w =  (x - strlen(str) )*1;

printf("%d\n%d\n%d\n%d\n",p,y,z,w);
return 0;   
}
结果为:
-2
2147483647
-2
-2
Press any key to continue
为什么第二个输出不是-1?知道的帮下忙,谢谢。
搜索更多相关主题的帖子: c语言 continue include return 
2011-12-03 21:48



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-356886-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.161849 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved