• 2022-06-06
    以下结构体定义错误的是
    A: struct ord {int x; int y} struct ord a;
    B: struct ord {int x; int y} ; struct ord a;
    C: struct ord {int x; int y} a;
    D: struct {int x; int y} a;