求大佬解答
# define N 10#include<stdio.h>
typedef chardatatype
int main()
{
typedef struct student
{
datatype name [N];
int score[N],i,sum;
}stu1;
stu1={"fh"};
for(i=0;i<N;i++){
scanf("%d",&stu1.score[i]);
sum+=stu1.score[i];}
printf("the score of fh is %d",sum);
return 0;
}