以下のプログラムをコンパイルしようとすると、構造体または共用体ではないメンバー「マシン」の要求としてエラーが発生します
struct machine
{
int a;
int b;
int c;
};
struct config
{
struct machine *machine;
int n;
};
int main()
{
struct config *conf;
struct machine *mach;
mach->a=1;
mach->b=2;
mach->c=3;
conf.machine=mach; /* error in this line */
return 0;
}
誰でもこのバグを修正するのを手伝ってくれますか..よろしくお願いします!!!