对C语言连等式的学习

例子如下

复制代码
[pgsql@localhost soft]$ cat test1.c
#include 
#include 

int main()
{
   int a,b,c;
   a = 10;
   b =20;
   c = 30;

   a = b =c;

   fprintf(stderr,"a :%d\n",a);
   fprintf(stderr,"b :%d\n",b);
   fprintf(stderr,"c :%d\n",c);

   return 0;
}
[pgsql@localhost soft]$ 
复制代码

运行:

[pgsql@localhost soft]$ ./test1
a :30
b :30
c :30

得出结论,赋值从右边向左边进行







本文转自健哥的数据花园博客园博客,原文链接:http://www.cnblogs.com/gaojian/p/3237723.html,如需转载请自行联系原作者


你可能感兴趣的:(c/c++)