Hello
Hello i have struct dynamic array (matrixCov) like this
*array = (struct matrixCov*)malloc(sizeof(struct matrixCov) * counter);
now i have another struct Link list with element Data type -struct matrixCov (struct matrixCov * data)
now when i type this line
for (k=0;k<conter;i++){
(*pointer)->data =array[k];}
when k=0 copied well but from k=1 its doesnt work
what can be the problem?