• 2022-06-08
    以下结构体说明和变量定义中,正确的是( )。
    A: struct abc{ int n;double m );struct abc x, y;
    B: struct ABC{ int n;double m; }struct ABC x, y;
    C: typedef struct abc{ int n;double m; }ABC;ABC x,y;
    D: D) struct abc{ int n;double m; };abc x,y;