#include <stdio.h>
struct xuesheng
{
int math;
int english;
}
int main(int argc,char **argv)
struct xuesheng chengji[50];
chengji[15].math = 120;
chengji[15].english = 115;
return 0;
结构体定义完后有个分号