In this code: int a[10]; int b[10]; int *aux; aux=a; a=b; b=aux;. The statement aux=a; works because a decays into a pointer to its 1st ...
確定! 回上一頁