When I wrote this program with a structures. I said:
{
struct Contact
{
char Name[101];
char Middle[101];
char Last[101];
long Area;
long Area1;
long Area2;
long Area3;
long Home;
long Business;
long Cell;
long Other;
char Email[101];
char Address[101];
int Zip;
char City[101];
char State[101];
char Country[101];
char Job[101];
char Company[101];
};
Contact hi[100];
Is this a right way of defining it? And how do I get the program to use the next structure every time?
I have another question. How do I Modify a file? I want to know how to do only a certain part of it like a certain structure?