c - 语法错误 : missing ';' before 'type'

标签 c

所以我有这个错误:

Error 3 error C2143: syntax error : missing ';' before 'type' g:\lel\tommy\tommy\tommy.c 34 tommy

来自这段代码:

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <malloc.h>
#include <conio.h>

struct matrep {
      unsigned rows,cols;
      double *matrix;
};

int matrix_read(struct matrep *mat, const char *filename)
{
    FILE *fptr;
    unsigned m, n;

    if ((fptr = fopen(filename, "r")) == NULL)
    {
        fprintf(stderr, "Cannot Open File %s\n", "matrixA.txt");
        return -1;
    }
    if (fscanf(fptr, "\n\nnrows %u, columns %u\n\n", &m, &n) != 2)
    {
        fprintf(stderr, "Failed to read dimensions\n");
        return -1;
    }

    mat->matrix = (double *)malloc(sizeof(double) * m * n);
    if (mat->matrix == 0)
    {
        fprintf(stderr, "Failed to allocate %d*%d matrix\n", m, n);
        return -1;
    }
    double *ptr = mat->matrix;//this is where it says that the error occured.

    for (int i = 0; i < m; i++)
    {
        for (int j = 0; j < n; j++)
        {
            double x;
            if (fscanf(fptr, "  %5.2lf", &x) != 1)
            {
                fprintf(stderr, "Failed to read element matrix[%d,%d]\n", i, j);
                free(mat->matrix);
                mat->matrix = 0;
                mat->columns = 0;
                mat->rows = 0;
                return -1;
            }
            *ptr++ = x;
        }
    }
    fclose(fptr);
    mat->columns = m;
    mat->rows = n;

    return 0;  // Success   
}

int main(int argc, _TCHAR* argv[])
{
    return 0;
}

我不知道那是什么意思,也不知道我在哪里犯了错误。请帮忙。

更新:

虽然原始问题已解决,但我收到了完全相同的错误,但在另一个代码块中,我正在按照所选答案的建议编写:

int matrix_multiplication(struct matrep *mat_left,struct matrep *mat_right,struct matrep *result)
{
    if(mat_left->cols != mat_right->rows)
    {
        fprintf(stderr, "The number of columns from the left matrix are different from the number of colums from the right matrix");
        return -1;
    }
    double *p = NULL;//this is where the same error occurs the first time
    double *pa = NULL;
    int i,j;
    result->rows = mat_left->rows;
    result->cols = mat_right->cols;

    p = result->matrix;
    for (pa = mat_left->matrix, i = 0; i < mat_left->rows; i++, pa += mat_left->cols)
        for (j = 0; j < b->w; j++)
            *p++ = dot(pa, mat_right->matrix + j, mat_left->cols, mat_right->cols);
    return 0;
}

我真的迷路了,我正在阅读这段代码,但不知道为什么它会给我同样的错误。

最佳答案

在编译 C 程序时,MSVC 不允许声明跟在 block 中的语句之后(它使用旧的 C90 规则 - 在 1999 年的标准中将声明与语句混合的支持添加到 C 中)。

double *ptr 的声明移动到 matrix_read() 的顶部:

int matrix_read(struct matrep *mat, const char *filename)
{
    FILE *fptr;
    unsigned m, n;
    double *ptr = NULL;

    // ...

    ptr = mat->matrix;  //this is where the error used to occur

    // ...
}

我真的希望 MS 能在他们的 C 编译器中实现这个“扩展”。

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

相关文章:

C中的客户端服务器程序

c - 返回哪个数字出现次数最多

c - Windows CreateProcess 和输出重定向

c - C中如何用二进制数初始化整型变量?

c - PostgreSQL C 函数获取参数 varchar 类型

c - 从 C 中另一个函数的指针获取输入

c - LinkedList : Why there is need to declare a new struct node current? 如果我使用参数 head 进行跟踪,代码工作得很好吗?

c++ - 从森林中构建一棵 n 叉树

c - Frama-C 用 "/*@ ensures"证明 While 循环

c - 在 C 代码中通过引用将结构传递给函数(编译错误)