第19423题 单选
给定如下C语言代码,执行后的输出结果是什么?
int a = 1;
printf("a+1=%d\n", a+1);
A

a+1= 2

B

a+1=2

C

2=2

D

2= 2