Submitted Questions

  • how does three dimensional array works?

    sravan

    • Nov 18th, 2006

    a 3-d array is collection 2-d arrays as rows.ex: a[2][3][4] means 'a' contains two 2-d arrays of each size [3][4].first subscript 2 indicates that 'a' contains two arrays which have 3-rows and 4-coloumns.

    hanuman

    • Nov 13th, 2006

    let us take an example     main(){int a[2][2][2];int i,j,k;for(i=0;i<2;i++)  for(j=0;j<2;j++)      for(k=0;k<2;k++)    &n...