C - fgets()会产生乱码

时间:2012-12-21 23:58:04

标签: c malloc fgets

我使用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;
}

1 个答案:

答案 0 :(得分:0)

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

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

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