[geeks] [4][4] matrix

Phil Brutsche phil at tux.obix.com
Tue Feb 26 10:12:00 CST 2002


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



More information about the geeks mailing list