这两种表达的区别是什么呢?
temp=a[i];
a[i]=a[i+1];
a[i+1]=temp
strcpy(temp,a[i]);
strcpy(a[i],a[i+1]);
strcpy(a[i+1],temp);