多项选择题
若有以下调用语句,则正确的fun函数的首部是()
A.void fun(int m, int x[]) B.void fun(int s, int h[41]) C.void fun(int p, ints) D.void fun(int n, int a)
A.若p+=2, 则*(p++)的值为4 B.若p+=2, 则*++p的值为4 C.若p+=3, 则*p++的值为4 D.若p+=2, 则++*p的值为4
A.若p=x+1,则++(*p)的值为2 B.若p=x+2,则p++的值为2 C.若p=x+1,则(p++)的值为2 D.若p=x+1,则++p的值为2