You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include<stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#define LEN sizeof(phone)
|
|
static int count=0;
|
|
FILE *ptr1;
|
|
struct txl //通过结构体方便储存个人的各项数据
|
|
{
|
|
char name[10];
|
|
char hometown[10];
|
|
char number1[11];
|
|
char number2[11];
|
|
char e_mail[10];
|
|
}phone[100]; //通过结构体数组可以储存多人的数据
|
|
|