C从chars数组中删除元素

时间:2018-11-22 07:53:42

标签: c

我有一个叫名字的数组 。
要删除的元素是斯蒂芬妮·康利

char names[30][50]={"Henry Bush","Stephanie Conley","Ronald Boon","Aura Henry","Larry Knox"};

main(){
int i,indice = 1; // 1 = Stephanie Conley
int n=4; // total number of elements in the array

 for (i=indice;i<=n-1;i++)
   names[i]=names[i+1];

}

错误:分配给具有数组类型的表达式

0 个答案:

没有答案