Can anyone help me in making this program?!...
I need to make a telephone directory using structure definition..
typedef struct AddressTag{
char surname[55];
char givenname[55];
char middleinitial[5];
char telnum[55];
struct PersonTag *next;
} AddType;
I need to have function for inserting, editing and deleting an entry.Entries should be inserted in alphabetical order according to the person's surname.It should also be able to save the entries to a file..
I need to make a telephone directory using structure definition..
typedef struct AddressTag{
char surname[55];
char givenname[55];
char middleinitial[5];
char telnum[55];
struct PersonTag *next;
} AddType;
I need to have function for inserting, editing and deleting an entry.Entries should be inserted in alphabetical order according to the person's surname.It should also be able to save the entries to a file..
Comment