问题详情

有以下程序

main()

{ int y=10;

while(y--);printf("y= % d\n",y);

}

程序执行后的输出结果是

A)y=0

B)y=-1

C)y=1

D)while 构成无限循环

参考答案
您可能感兴趣的试题