gpt4 book ai didi

C语法错误: missing ';' before 'type'

转载 作者:行者123 更新时间:2023-12-02 08:39:16 25 4
gpt4 key购买 nike

我在 Microsoft Visual C++ 2010 Express 中执行的 C 项目中遇到了一个非常奇怪的语法错误。我有以下代码:

void LoadValues(char *s, Matrix *m){
m->columns = numColumns(s);
m->rows = numRows(s);
m->data = (double*)malloc(sizeof(double) * (m->rows * m->columns));
int counter = 0;
double temp;
bool decimal;
int numDec;
while(*s != '\0'){
.
.
.
}
}

当我尝试构建解决方案时,我得到了“缺失的‘;’”我的所有变量(temp、counter 等)在类型之前出现错误,并尝试在 while 循环中使用它们中的任何一个会导致“未声明的标识符”错误。我确保 bool 是通过做定义的

#ifndef bool
#define bool char
#define false ((bool)0)
#define true ((bool)1)
#endif

在 .c 文件的顶部。我在 Stack Overflow 上搜索了答案,有人说旧的 C 编译器不允许你在同一个 block 中声明和初始化变量,但我不认为这是问题所在,因为当我注释掉这些行时

m->columns = numColumns(s);
m->rows = numRows(s);
m->data = (double*)malloc(sizeof(double) * (m->rows * m->columns));

所有语法错误都消失了,我不知道为什么。感谢您的帮助。

---编辑----请求 Matrix 的代码

typedef struct {
int rows;
int columns;
double *data;
}Matrix;

最佳答案

在不兼容 C99 的 C 编译器中(即 Microsoft Visual C++ 2010)(感谢 Mgetz 指出这一点),您不能在 block 中间声明变量。

因此尝试将变量声明移动到 block 的顶部:

void LoadValues(char *s, Matrix *m){
int counter = 0;
double temp;
bool decimal;
int numDec;
m->columns = numColumns(s);
m->rows = numRows(s);
m->data = (double*)malloc(sizeof(double) * (m->rows * m->columns));
while(*s != '\0'){
.
.
.
}
}

关于C语法错误: missing ';' before 'type' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18083624/

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