1.

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

Answer»

struct student

{

int SP regno;

char name[50];

char class[6];

};



Discussion

No Comment Found