44

单选题 44 /101

执行c程序代码
int a = 1;
int b = 0; 
int c = 0; 
int d = (++a) * (c = 1);
a,b,c,d的值分别为()。

参考答案

2,0,1,2
1,0,1,1
2,0,1,1
2,0,0,2