Hello,
I am a new programmer. I am trying to copy the elements of this 20x3 array into a 1x60 or 60x1 array
an[60]=A[20][3]
one of my attempts is:
for (i=0;i<20;i++) {
for(j=0;j<3;j++){
at1[i]=A[i][j];
at2[i]=A[i][j];
at3[i]=A[i][j];}
}
an[60]={at1,at2,at3};