Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   Programming (http://www.chiefdelphi.com/forums/forumdisplay.php?f=51)
-   -   Using multidimension arrays? (http://www.chiefdelphi.com/forums/showthread.php?t=32536)

Aalfabob 11-01-2005 15:07

Using multidimension arrays?
 
I made some code that involves a multi dimension array, and the compiler is coming up with a syntax error.

ATan [32,32];

Are there anyways to fix this so that I can use the array?

Dave Scheck 11-01-2005 15:15

Re: Using multidimension arrays?
 
Quote:

Originally Posted by Aalfabob
I made some code that involves a multi dimension array, and the compiler is coming up with a syntax error.

ATan [32,32];

Are there anyways to fix this so that I can use the array?

This is incorrect C syntax. You want to write that as follows.
Code:

ATan[32][32];
More info about arrays can be found by looking here.


All times are GMT -5. The time now is 02:48.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi