Hello everybody!
This forum gave the greatest impression so congratulations to you folks who built it. I'm not an expert in c++, i've actually started learning a year ago so i need little help..I have two classes course and student. The course class is :
class course
{
private :
int a;
float b;
public :
course(int aa, int bb);
};
and the student class is
class student
{
private:
int g;
course p[10];
public :
constructor of student
};
My question is as you've already understood, how am i going to write the student constructor. The array of course instances confuses me...Any help would be appreciated..Thank you for reading my post..
vanalex