• 2022-10-28
    以下选项中,不能定义s为合法的结构变量的是 。
    A: struct abc{double a;char b[10];}s;
    B: struct{double a;char b[10];}s;
    C: struct abc{double a;char b[10];};struct abc s;
    D: struct s{double a;char b[10];};