sample.c:18: error: incompatible types when assigning to type ‘char[20]’ from type ‘char *’
構造体の宣言時の初期設定以外で、配列要素に文字列リテラルは代入できません。
strcpy関数等でコピーしてください。
sample.c:18: error: expected ‘;’ before ‘test’
文末の「;」が抜けています。
sample.c:23: error: incompatible types when assigning to type ‘char[20]’ from type ‘char *’
これが一番上と同じ。
補足
直してもエラーが出たので詰まりましたが、アドバイスのおかげで 何とか出来ました。ありがとうございました