需要一个答案和一些解释

发布于 2024-12-01 20:42:21 字数 152 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请你别敷衍 2024-12-08 20:42:21

如果您编译了该代码,您会看到一条警告:

prog.c:4: warning: left-hand operand of comma expression has no effect

它告诉您在逗号运算符的这种用法中,会考虑逗号右侧的语句,而忽略左侧的语句。

这基本上意味着用于 for 循环的检查条件是:

i < 10

while,

j >0

被忽略,因为它位于逗号表达式的 LHS 上。

If you have compiled that code, You see a warning:

prog.c:4: warning: left-hand operand of comma expression has no effect

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:

i < 10

while,

j >0

is ignored since it is on LHS of the comma expression.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文