i have to create a class of student with the following data members,
i dun know how to intialize them in argumentless constructor ,, and set the values in argument constructor and copy constructor.Code:class student
{
char *name;
int age;
int *regNum;
int *address;
int cgp;
can anybody help??

