需要一个答案和一些解释
void main (){
int i, j;
for (i=0, j=5; j >0, i < 10; i ++, j--)
printf("\nClub Excel");
}
输出会是什么?
void main (){
int i, j;
for (i=0, j=5; j >0, i < 10; i ++, j--)
printf("\nClub Excel");
}
What will be the output?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您编译了该代码,您会看到一条警告:
它告诉您在逗号运算符的这种用法中,会考虑逗号右侧的语句,而忽略左侧的语句。
这基本上意味着用于
for
循环的检查条件是:while,
被忽略,因为它位于逗号表达式的 LHS 上。
If you have compiled that code, You see a warning:
It tells you that in this usage of comma operator the statement on the R.H.S of the comma is taken in to consideration while the one on L.H.S is ignored.
This basically means the condition checked used for the
for
loop is:while,
is ignored since it is on LHS of the comma expression.