Firstly ...
please note that if you wish your code to be portable,
do not use <conio.h>
You can use a C struct and a typedef to create whatever data record you need.
typedef struct
{
char* name;
int id;
int scores[5];
} Student;
And then in your main function ... get space to hold as many records as you need:
Student studs[100]; /* reserve space to hold 100 Student rec's */