C语言程序设计


c=(a=10,b=5,a+b);
a=10,b=5,c=15

点击查看代码
#include 

main()
{
	int a,b,c;
	c=(a=10,b=5,a+b); 
	printf("a=%d,b=%d,c=%d\n" ,a,b,c);
}

相关