1.a=(b–,c++,b+c)
in the end : a=b+c;
2.while loop
while(condition)
{
++or–;
then quit;
}
- int a=4;
a++ =5;
++a=5;
1+(a++)=5;
(++a)+1=6;
binary operator its usage–>
a>b?printf(“a>b\n”):printf(“a<b\n”);
printf(“a>b?a:b=%d\n”,a>b?a:b);
printf(“a<b?a:b=%d\n”,a<b?a:b);

博客展示了C语言相关代码,包含表达式a=(b–,c++,b+c),最终a=b+c;还给出while循环结构,以及自增自减运算符的使用示例,如a++、++a等,同时展示了三元运算符的用法。
1231

被折叠的 条评论
为什么被折叠?



