Computer Science, asked by harshnims523, 1 year ago

Consider the following class STUDENT that contains record of students in a school. The members of the class are as follows: Adm_ no,Name,DOB grade, section, fee,address create in c++ program

Answers

Answered by marshmallow9250
10
you can create a c++ class of above desription as

class STUDENT {
int Adm_no;
char name[15],DOB[8],grade,section,address[25];
float fee;
}

saurabh029: Pls write answer about 500 words
Similar questions