编程题:逗号运算符的运用
#include<stdio.h>
void main()
{int a=3,b=4,c=1,max,t;
if(a>b,a>c) max=a;
else max=0;
t=(a+3,b+1,++c);
printf("max=%d,t=%d\n",max,t);
}
运行结果:
转载于:https://blog.51cto.com/c10086/1413831
编程题:逗号运算符的运用
#include<stdio.h>
void main()
{int a=3,b=4,c=1,max,t;
if(a>b,a>c) max=a;
else max=0;
t=(a+3,b+1,++c);
printf("max=%d,t=%d\n",max,t);
}
运行结果:
转载于:https://blog.51cto.com/c10086/1413831