这个程序有任何序列点问题吗?

时间:2010-11-17 06:40:11

标签: c++ c operator-precedence

  

可能重复:
  twisted c++ code
  FAQ : Undefined Behavior and Sequence Points

#include<stdio.h>
 int main()
 {  
       int i=7,j;
       j=(i++,++i,j*i); 
       return 0;
}

j=(i++,++i,j*i++);是否定义明确?让我明白我的怀疑。

0 个答案:

没有答案