表达式真假的返回值

//什么是真,什么是假
//打印两个关系表达式的值
#include<stdio.h>
#include<stdlib.h>
int main()
{
	int ture;
	int fause;
	ture = (10 > 1);
	fause = (10 < 1);
	printf("ture=%d,fasle=%d", ture, fause);
		system("pause");
	return 0;
}

猜你喜欢

转载自blog.csdn.net/AKG420/article/details/88066071
今日推荐