gpt4 book ai didi

c - 在代码块中使用 #include ""指令时出错

转载 作者:行者123 更新时间:2023-11-30 18:38:10 24 4
gpt4 key购买 nike

我对编程非常陌生,所以这可能是一个愚蠢的问题。

我试图将我的结构放入单独的头文件中,但是当我这样做时,我收到此错误:

main.c|3|error: expected ';', identifier or '(' before 'int' === Build failed: 1 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===

这是来自 main.c 的代码:

#include "struct.h"

int main(void){

return 0;
}

这是struct.h:

struct test{

int a;
}

最佳答案

您的结构后缺少 ;:

应该是

struct test {
int a;
};

关于c - 在代码块中使用 #include ""指令时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34722764/

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