首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
lvhui123456的代码贴
→
全部
[C语言]fclose关闭文件报错free(): invalid next size (normal)
#include <stdio.h>
#include <malloc.h>
#include <ctype.h>
#include <string.h>
bool file_exists(const char* file)
{
FILE* f = fopen(file, "r");
if (!f) {
return false;
}
......................
阅读全部
| 2021年1月27日 15:57
[C语言]fclose关闭文件报错free(): invalid next size (normal)
#include <stdio.h>
#include <malloc.h>
#include <ctype.h>
#include <string.h>
bool file_exists(const char* file)
{
FILE* f = fopen(file, "r");
if (!f) {
return false;
}
......................
阅读全部
| 2021年1月27日 15:56
1
lvhui123456
全部(2)
C语言(2)