第19786题
给定C++代码段cout<<(x++) + (++x)<<endl;的相关说法正确的是?
int x=10;
cout<<(x++) + (++x)<<endl;
A

C++11标准中,这是未定义行为,不同的环境有可能出现不同的结果

B

22

C

21

D

20