摘要: 1 //读文件到内存中,不能浪费内存空间 2 //禁止使用 char buf[][1024]式二维字符数组浪费内存 3 #include 4 #include 5 #include 6 7 int main(void) 8 { 9 FILE* pf = fopen("G:/qtcode/smb.conf","r+"); 10 if(pf == NULL)... 阅读全文
posted @ 2018-08-16 12:13 2018年8月10日注册 阅读(247) 评论(0) 推荐(0) 编辑