Re: variable weirdness
Re: variable weirdness
- Subject: Re: variable weirdness
- From: Scott Ribe <email@hidden>
- Date: Sat, 11 Feb 2006 08:42:58 -0700
- Thread-topic: variable weirdness
> main()
> {
> double my_a[13];
>
> my_a[1]=109789.99;
> etc..
>
> spec_calc_pred(my_a[1],my_a[2],.....);
>
> }
Any chance you have:
my_a[1]=
...
my_a[13]=
Instead of:
my_a[0]=
...
my_a[12]=
???
--
Scott Ribe
email@hidden
http://www.killerbytes.com/
(303) 722-0567 voice
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden