1.

Write a C++ structure definition to store the student details given below:1. Admission number 2. Name 3. Marks in six subjects

Answer»

Struct student 

intAdmno; 

charname[30]; 

int mark[6]; 

}



Discussion

No Comment Found