No.24 我与代码的日常:C语言实现简易通讯录

#define SIZE 1000 #define _CRT_SECURE_NO_WARNINGS 1 #include <stdio.h> #include <string.h> typedef struct PersonInfo{ char name[1024]; char phone[1024]; } PersonInfo; typedef struct AddrBook{ Pe
相关文章
相关标签/搜索