Gamestudio Links
Zorro Links
Newest Posts
Change chart colours
by 7th_zorro. 05/11/24 09:25
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (AndrewAMD, dr_panther), 1,290 guests, and 4 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Hanky27, firatv, wandaluciaia, Mega_Rod, EternallyCurious
19051 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
pointers #464483
02/17/17 12:22
02/17/17 12:22
Joined: Jul 2016
Posts: 51
H
hatten Offline OP
Junior Member
hatten  Offline OP
Junior Member
H

Joined: Jul 2016
Posts: 51
I am wondering if it is possible to use the following multidimensional pointer construct:

#define N1 5
#define N2 5
#define N3 7

run()
{

vars Arr[N1][N2][N3];
var Val;
...

Arr[1][2][1]=series(priceClose(1)-priceclose(0));


Val = Arr[1][2][1](1);

Is this possible or not possible?

Re: pointers [Re: hatten] #464500
02/20/17 08:53
02/20/17 08:53
Joined: Jul 2000
Posts: 27,986
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,986
Frankfurt
Yes, but this is wrong syntax. Correct is:

static vars Arr[5][5][7];
...
vars MySeries = Arr[1][2][1];
Val = MySeries[1];



Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1