4

请帮我解决一些问题。

该文件包含:

AAAA 111 BBB
CCC 2222 DDDD
EEEEE 33 FF

代码是:

int main() {
    FILE * finput;

    int i, b;
    char a[10];
    char c[10];

    finput = fopen("input.txt", "r");

    for (i = 0; i < 3; i++) {
        fscanf(finput, "%s %i %s\n", &a, &b, &c);
        printf("%s %i %s\n", a, b, c);
    }

    fclose(finput);
    return 0;
}

该代码确实有效。但是,会出现以下错误:

format «%s» expects argument of type «char *», but argument 3 has type «char (*)[10]
format «%s» expects argument of type «char *», but argument 5 has type «char (*)[10]

类型错了吗?有什么问题?

4

1 回答 1

9

数组名称衰减为指向其第一个元素的指针,因此为了将数组的地址传递给fscanf(),您应该直接传递数组:

fscanf(finput, "%s %i %s\n", a, &b, c);

这相当于:

fscanf(finput, "%s %i %s\n", &a[0], &b, &c[0]);

但显然使用a而不是&a[0]更方便。

您编写它的方式是传递相同的(这就是它起作用的原因),但该值具有不同的类型:它不再是指向 a 的指针char,而是指向 s 数组的指针char。这不是fscanf()预期的,因此编译器会发出警告。

For an explanation, see: https://stackoverflow.com/a/2528328/856199

于 2012-10-24T04:30:22.447 回答