• 2022-06-11
    2.structstudent{ int number;char name[10];};struct student *p,stu[2];p=stu;对stu和p的操作,错误的是:
    A: p++;
    B: stu++;
    C: p+1;
    D: stu+1;