"Ken Kwok" <kenkwok@cmu.edu> writes: > Does css support 2-dimensional arrays? If it does, it doesn't seem to > understand the standard C syntax for declaring and referencing 2-D arrays. works for me: css> int ary[10][10]; css> ary[2][3] = 5; css> p ary[2][3]; (Int) = 5 - Randy