0

我使用 VS 2010 作为我的 IDE,这段代码可以正常工作,直到 fgets 被称为 puts 参数的行。它可以很好地记下文件中的数字,但也会打印出一些烦人的乱码。也许我在某处错过了 \0,不知道。其他人在 mingw 或 gcc 等其他编译器上尝试过它,它工作正常。

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

int main()
{
    int *a, n, i;
    char str[512];
    FILE *f;
    printf("Insert array size: ");
    scanf("%d", &n);
    if(n <= 0)
    {
        printf("%d is not an allowed value!\n", n);
        return 1;
    }
    a = (int*)malloc(n * sizeof(int));
    if(a == NULL)
        return 2;
    putchar('\n');
    f = fopen("myarray.txt", "r+");
    if(f == NULL)
        return 3;
    for(i = 0; i < n; ++i)
    {
        printf("Insert %d. element of the array: ", i + 1);
        scanf("%d", &a[i]);
        fprintf(f, "%d ", a[i]);
    }
    putchar('\n');
    puts(fgets(str, 512, f));
    free(a);
    fclose(f);
    return 0;
}
4

1 回答 1

0

在代码中调用fgets文件指针的位置应位于文件末尾。

因此,fgets应该返回NULL指针,因为它在读取任何字符之前命中 EOF。

因此,您将NULL指针传递给puts.

于 2012-12-22T00:06:17.430 回答