Code:
#include <iostream.h>

struct CustomerInfo{
	char name[100];
	char address[100];
	int lawnsize;
	char daytobecut[10];
};
//---------------------------------------------
void AddCustomer()
{
	cout<<"ADD"<<endl;
	cout<<"Enter name to be added: ";
	cin>>CustomerInfo.name;
	cout<<"Enter address: ";
	cin>>CustomerInfo.address;		
	cout<<"Enter lawn size: ";
	cin>>CustomerInfo.lawnsize;
	cout<<"Enter day to be cut: ";
	cin>>CustomerInfo.daytobecut;
}
//---------------------------------------------
void FindCustomer()
{
}
//---------------------------------------------
void RemoveCustomer()
{
}
//---------------------------------------------
int main()
{
	char menuchoice;			
	cout<<"Enter Display, Add, dElete, Quit: ";
	cin>>menuchoice;
	if(menuchoice=='A')
		AddCustomer();
	else if(menuchoice=='D')
		FindCustomer();
	else if(menuchoice=='E')
		RemoveCustomer();
	
	return (0);
}
its a shop interface they will eventually be 2d arrays but for now 1d i just want to be able to input one individual for now so help me out plz