Is this program having any sequence point issues?

前端 未结 3 363
自闭症患者
自闭症患者 2021-01-07 14:21
#include
 int main()
 {  
       int i=7,j;
       j=(i++,++i,j*i); 
       return 0;
}

j=(i++,++i,j*i);Is this well defined ? Let m

3条回答
提交回复
热议问题