1.

Write a structure definition for the structure student containing exam no, name and an array for storing five subject marks.

Answer»

struct student

{

long examno;

char name [50];

int marks [5];

};



Discussion

No Comment Found