Tq allanlane5 for ur reply. My purpose is to apply mapping method which i want to store value in XY coordinates system. So do u have any idea about this?
You might be able to use part of the program EEPROM to store your array as long as you don't change the values too much since it's possible to "wear out" memory locations if they're written too many times. Read the section of the manual on the READ/WRITE commands. You still only get a linear address space, but you can always compute your own subscripts. Say you want a 16 x 16 coordinate system and you're going to store the array starting at location ZZZ in the EEPROM. To read a location into a variable W, you can do "READ ZZZ+X*16+Y,W". This assumes that X and Y will range over 0-15 and the values are bytes (not 16-bit words).
Comments
So no, there's no way, PBasic only supports a 1 dimensional array.
Why, what did you want to do?