I have an array called names
.
The element to remove is Stephanie Conley
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];
}
Error : assignment to expression with array type