2)üç boyutlu a[4][2][6] dizisini tek boyutlu b[48] dizisine dönüştüren programı yazın
int b= new int [48];
for(int m=0;m<48;m++)
for(int i=0;i<4;i++)
for(int j=0;j<2;j++)
for(int k=0;k<6;k++)
{b[m]=a[i][j][k];
}
işe yaraması lazım