can any1 make functions of the class n main function

#include<iostream>

using namespace std;

struct Date
{
unsigned short day;
unsigned short month;
unsigned short year;
};


class list
{
private:
int size;
int len;
Date *my_array;
public:
list();

void copy(const list temp);
void clear();
void insert(Date d1, int n);
void remove(int r);
Date get(int n);
void update(Date d1,int n);
void find(Date d1);
int length();
void display();
};
I don't understand the question.
i dnt know how to wirte the function like insert date month yaer n display them n rempove them n update etc
sir i have some functions like copy clear etc i dnt knw how to pass array of date type through main class to function to insert
#include<iostream>

using namespace std;

struct Date
{
unsigned short day;
unsigned short month;
unsigned short year;
};


class list
{
private:
int size;
Date *my_array[10];
public:
list();

void copy(const list temp);
void clear();
void insert(Date d1, int n);
void remove(int r);
Date get(int n);
void update(Date d1,int n);
void find(Date d1);
int length();
void display();
};
Let me quote some parts from the article ( http://www.cplusplus.com/forum/beginner/1/ ) I posted above :
article wrote:

[...]
Prepare your question. Think it through. Hasty-sounding questions get hasty answers or none at all.
[...]
Write in clear, grammatical, correctly-spelled language
Expressing your question clearly and well is important. Spend the extra effort to polish your language. It doesn't have to be stiff or formal. But it has to be precise.
[...]
If you write like a semi-literate boob you will very likely be ignored. So don't use instant-messaging shortcuts.
[...]
Be precise and informative about your problem
•Describe the symptoms of your problem carefully and clearly.
•Describe the environment in which it occurs (machine, OS, application, whatever).
•Describe the research you did to try and understand the problem before you asked the question.
•Describe the diagnostic steps you took to try and pin down the problem yourself before you asked the question.
[...]
i cant describe anymore i thnk so it is enough for teacher
Topic archived. No new replies allowed.