Skip to content

This project is about how to make a simple address book system

Notifications You must be signed in to change notification settings

Gameshi/ContactSystemSimplify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

ContactSystemSimplify

This project is about how to make a simple address book system

1.Introduction

  • 1.1 The following code introduces the members of person that in address book:
typedef struct Person
{
  string Name;
  char Gender;
  int Age;
  string TelNumber;
  int Score;
} PERSON;
  • 1.2 The following code defines the structure of the address book:
typedef struct ContactData
{
  PERSON person[PERSONNUMBER];
  int curPersonNumber;
} ADDATA;

curPersonNumber Indicates the number of people recorded in the current address book.

  • 1.3 The following code defines maxperson in address book.
#define PERSONNUMBER 100

About

This project is about how to make a simple address book system

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages