私はCを初めて使用し、構造体配列を使用しています。値を割り当てるのに問題があります。これが私の構造です。
struct student{
char firstname[30];
char surname[30];
int streetNo;
char streetName[30];
char suburb[30];
char state[4];
int postCode;
char DOB[10];
int studentNo;
char gender;
char courseNo[4];
char active;
int WAM;
};
struct student person[1000];
これが構造体に値を割り当てる私です
person[100].firstname = "dan";
これは私のエラーです
assignment type mismatch: array[30] of char "=" pointer to char