• 2022-06-19
    下列对结构类型变量不正确的定义是
    A: struct teacher{ int num; int age; }teacher1;
    B: struct{ int num; int age; }teacher1,teacher2;
    C: struct{ int num; int age; }teacher
    D: struct teacher{ int num,age; }a;