70,020
社区成员




/************************************************************************/
/* 三元表达式"? :"问号后面的两个操作数必须为同一类型吗?
*/
/************************************************************************/
#include <stdio.h>
#include <string.h>
int main()
{
int c = 0;
int d = 0;
int a = c > d ? 3 : "as"; //怎么没有报错啊?
printf("%d\n", a);
return 0;
}