• 2022-06-10
    对于下面的定义,p=arr;等价于()。struct{ int a; float b;}arr[3],*p;
    A: p=arr[0];
    B: p=&arr[0];
    C: p=&arr;
    D: p=*arr;