class Student {

private:

string studentName; // Would this be initialising a student's name and program code to empty strings.??????
string studentProgramCode;

public:
/**
* Default constructor.
* Creates an empty Student object by initialising a student's name and
* program code to empty strings.
*/
Student(); //Default constructor.???

/**
* Constructor.
* Creates a Student object with the given name and program code.
*/
Student(const string& name, const string& programCode);

/**
* return the name of this student.
*/
string getName()const;
Im very Confused where to start the practical can anyone give me any tips etc?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.