here are my codes:
#ifndef STUDENT_H
#define STUDENT_H
class student
{
public:
void enterDetails();
void enterModule();
void displayDetails();
private:
char name[100];
char studID[100];
char address[100];
char module[100];
};
#endif
i want to add a 2d array "M[row][col]" in my class but i don't know how to do it anyone help?