易错题With regard to the array definition int a[4]; ,which expression among the following is wrong?A.*aB.a[0]C.aD.a++选择D因为数组首地址是个固定值,不可变动。