I have a one dimensional array, how can I store information in a two dimensional array, I have tried the following code, but it doesn't works fine...
for (y=0; y<gar; y++)
{
for (l=0; l<kk; l++)
for(k=0; k<kk; k++)
mas[l][k]=arr[y]; {Probably problem is in this line, I don't know the right way to switch information...
printf("%d",mas[l][k]);
getch();
Thanks for helping guys...
arr[y]over all fields ofmas. So finally all fields ofmaswill containarr[gar - 1]. What I believe you want to do is a mapping of the (l,k) pair to an y value. From what I see i think you should leave out theforon y and sety = l * kk + k;. – Nobody Oct 18 '11 at 9:36