现在的位置: 首页 > 综合 > 正文

【C语言】程序结果

2013年08月06日 ⁄ 综合 ⁄ 共 110字 ⁄ 字号 评论关闭
#include <iostream>
using namespace std;

void main()
{
	unsigned int a=6;
	int b=-20;
	char c = (a+b > 6);
	printf("%d",c);
}

 

为啥是1????

抱歉!评论已关闭.