void main()
{
char ID[11],name[51],gender[2];
int year;
float CGPA;
//Input
printf("\nEnter your Student ID :%c",ID);
printf("\nEnter your Name :%c",name);
printf("\nEnter your gender(M/F) :%c",gender);
printf("\nEnter your year enrolled :%4d",year);
printf("\nEnter your CGPA :%.2f",CGPA);