+1 vote
in Class 11 by kratos

Write the structure definition to store name of the student, register number, class.

1 Answer

+1 vote
by kratos
 
Best answer

struct student

{

int SP regno;

char name[50];

char class[6];

};

...