文件操作
lemon13467
这个作者很懒,什么都没留下…
展开
-
完整版通讯录源代码(2)——最全的功能(二进制文件写入与读取)
// contact.h#ifndef _CONTACT_H_#define _CONTACT_H_#pragma warning(disable:4996)#include <stdio.h>#include <malloc.h>#include <stdlib.h>#include <assert.h>#include <string.h>//person 内部元素的大小#define NAME_SIZE 32#d原创 2021-03-23 21:01:04 · 3705 阅读 · 2 评论 -
通讯录源代码(1)(包含文件操作——文件写入和读取)(文本文件)
//contact.h#pragma once#pragma warning(disable:4996)#include <stdlib.h>#include <stdio.h>#include <Windows.h>#include <assert.h>#include <malloc.h>#include <string.h>#include <errno.h>#define NAME_MAX原创 2021-03-18 22:31:23 · 2043 阅读 · 2 评论