-->
当前位置:首页 > 题库 > 正文内容

Multiple choice:How many times is the loop executed?

Luz3年前 (2021-05-10)题库382
How many times is the loop executed? @[ C](2)
```
int a=0;
while (a=0)
{
printf("%d",a);
a--;
}
return 0;
}
```
A. countless
B. 1
C. 0
D. Syntax error




A.countless
B.1
C.0
D.Syntax error


answer:C

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。