• 2022-06-08
    下列选项中不能够定义一个结构体类型变量stu的是 。
    A: struct student { int num; int age; } stu;
    B: struct student { int num; int age; }; student stu;
    C: struct {int num; int age; } stu;
    D: struct student {int num; int age; }; struct student stu;