意外的输出,用于打印增加的变量

时间:2018-11-18 16:34:19

标签: c printf output increment

当我写这篇文章时,我以为我会得到类似

的输出
  

1 2 3 4 5 6 7 ....

#include <stdio.h>

int main()
{
    int i = 0;

    printf("%d %d %d %d %d %d %d %d %d %d", ++i, ++i, ++i, ++i, ++i, ++i, ++i, ++i, ++i, ++i );
}

但是我得到的输出是enter image description here

0 个答案:

没有答案