On Tue, 2002-02-26 at 07:53, Joshua D Boyd wrote: > float t[4][4]; > > t=myFunc(); Treat t as if it's a pointer, cause, well, it is :) Something like this will work (I'm rusty on my C programming - been playing with interpreted languages too much - all hail PHP!): void myFunc (float *t[]) { } -- Phil