我正在尝试通过关闭并打开二进制文件来进行读取,但似乎无法正常工作。

当我将其更改为wb+并使用注释掉的fseek而不是关闭和打开时,它确实会读取。关闭和打开文件我怎么了?

int main(){
    FILE * tfp = fopen("test.bin", "wb");
    char src[] = "1233 asd 333";
    fputs(src, tfp);

    char aw[20];

    //fseek(tfp, SEEK_SET, 0);
    fcloseall;

    tfp = fopen("test.bin", "rb");
    fread(aw, sizeof(char), 20, tfp);

    fcloseall;
    getchar();
}

最佳答案

问题是fcloseall;而不是fcloseall();

10-08 08:33