You can of course just pretend it's a 2D array:
char foo[ X ];

foo[ (row * rowlen) + col ]This isn't want you are trying to do here, but you could.


Quzah.