• 2022-06-06
    结构体定义正确的是?
    A: struct mater {
    char name[20];
    };
    B: struct mater {
    char name[20];
    }mater;
    C: typedef struct{
    char name[20];
    }mater;
    D: typedef struct{
    char name[20];
    };
  • 举一反三