在定义中不能连续赋值,那么在定义以后就可以连续赋值了吗?
#include<stdio.h>
int main(void)
{
int a,b,c;
a=b=c=5;
printf("%d ,%d ,%d ",a,b,c);
return 0;
}
可以的