• 2022-06-19
    22. 以下对结构体类型变量的定义错误的是( )。
    A:
    B: define STU struct student STU {float height; int age; }std1;
    C: struct student {float height; int age; }std1;
    D: struct {float height; int age; }std1;
    E: struct {float height; int age; }student; struct student std1;