URGENT: Multi Dimensional Arrays with Arduino UNO

Hi all.. :wink:
Im new to the Arduino Environment and I'am usin an Arduino Uno. I'am fluent with C++..and i was wondering if we could create multi-dimensional arrays.

I'am working on a project where I implementing an algorithm which requires me to create a 8x8 matrix.

A quick response would be appreciated!!! :-/ :-/

int MyMatrix[8][8];

Cheers...will I have any complications using an 8x8 matrix..? I might need two 8x8s dats like 128 elements (int)

Cheers

Back at ya!

sizeof(int) = 2
sizeof(MyMatrix) = 8 * 8 * 2 = 128 bytes

Number of MyMatrix = 2

Total memory for MyMatrix = 128 * 2 = 256 bytes

http://arduino.cc/en/Main/ArduinoBoardUno
SRAM 2 KB (ATmega328)

2048 - 256 = 1792 bytes left for stack and data.

Thanx a million!! ;D :wink: