• 2022-07-23
    以下变量定义,错误的是:
    A: struct student{int num, char name[20];} s;
    B: struct {int num, char name[20];} s;
    C: struct student{int num, char name[20];}; struct student s;
    D: struct student{int num, char name[20];} ; student s
  • 举一反三