#ifndef MAIN_H
#define MAIN_H

typedef struct {

char name[40];
char address[100];
char city[20];
char state[15];
int zip;
}ADDRESS;

#endif