标签:
A ? B : C;
等价于
if(A)
{
B;
}
else
{
C;
}
/**
目的:三目运算符的举例
时间:2015年7月11日22:59:03
*/
#include <stdio.h>
int main(void)
{
int i;
i = (2 > 3 ? 8 : 2);
printf("i = %d\n",i);
return 0;
}
/**
在VC++6.0中运行结果为:
------------------------------
i = 2
Press any key to continue
------------------------------
*/
标签:
原文地址:http://www.cnblogs.com/luo841997665/p/4639543.html