• 2022-06-06
    下列结构体中定义正确的是
    A: record{
    int no;
    char num[16];
    float score;
    }
    B: struct record{
    int no;
    char num[16];
    float score;
    }
    C: struct record{
    int no;
    char num[16];
    float score;
    };
    D: struct record{
    int no
    char num[16]
    float score
    };