Re: dynamically allocating arrays of type double
Re: dynamically allocating arrays of type double
- Subject: Re: dynamically allocating arrays of type double
- From: Scott Ribe <email@hidden>
- Date: Fri, 15 Apr 2005 13:26:12 -0600
> values = (double **)malloc(sizeof(double));
> memset(0,sizeof(double) * r * c, values);
values = (double **)malloc(sizeof(double)*r*c);
;-)
--
Scott Ribe
email@hidden
http://www.killerbytes.com/
(303) 665-7007 voice
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden