C言語
struct
でのaの使用に問題があります。
とても不思議です!!!
structでstruct
を使用できません。
以前に定義しましたが...なぜですか?course
student
struct course
{
int no;
char name[30];
int credits;
float score;
};
struct student
{
int no;
char name[50];
course c[3];
};
私の言語はc ++ではなくcです