• 2022-05-26
    已知函数的原形如下,其中结构体a为已经定义过的结构,且有下列变量定义struct a *f(int t1,int *t2,strcut a t3,struct a *t4)struct a p,*p1;int i;则正确的函数调用语句为
    A: &p=f(10,&i,p,p1);
    B: p1=f(i++,(int *)p1,p,&p);
    C: p=f(i+1,&(i+2),*p,p);
    D: f(i+1,&i,p,p);