标签: 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++);是否定义明确?让我明白我的怀疑。
j=(i++,++i,j*i++);