无法读取文件的内容

时间:2017-03-18 12:08:09

标签: c file

我正在尝试使用x1.txt打印文件fgetc的内容,但它无效。

int main(void)
{
    FILE *x;
    char ch;

    x = fopen("x1.txt", "r");

    if (x == NULL)
    {
        printf("unable to access the file\n");
    }
    else
    {
        while (!feof(x))
        {
            ch = fgetc(x);
            printf("%c", ch);
        }
        fclose(x);
    }
    return 0;
}

我仍然被认为是初学者。

0 个答案:

没有答案