gpt4 book ai didi

c - 如果声明了 union,循环将不会显示

转载 作者:太空宇宙 更新时间:2023-11-04 06:55:39 24 4
gpt4 key购买 nike

<分区>

如果包含 union test 的声明,为什么下面代码中的 for 循环似乎无法运行?我正在使用 clang 编译器。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

union test{
int intv;
float floatv;
};

int main(){
union test test1; // When this is removed the below loop displays.

for(int i, j = 0; i < 5; i++, j = (j + i) * 2){
printf("%d %d\n", i, j);
}

return 0;
}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com