⚠ Switch to EXCALIDRAW VIEW in the MORE OPTIONS menu of this document. ⚠ You can decompress Drawing data with the command palette: ‘Decompress current Excalidraw file’. For more info check in plugin settings under ‘Saving’

Excalidraw Data

Text Elements

int C[3][2][2]

2

5

7

9

3

4

6

1

0

8

11

13

800

816

832

C[0][0][0]

C[0][0][1]

C[0][1][0]

C[0][1][1]

C[1][0][0]

C[1][0][1]

C[1][1][0]

C[1][1][1]

C[2][0][0]

C[2][0][1]

C[2][1][0]

C[2][1][1]

804

808

812

820

824

828

836

840

844

C[0][0]

C[0][1]

C[1][0]

C[1][1]

C[2][0]

C[2][1]

800

808

816

824

832

840

C[0]

C[1]

C[2]

800

816

832

int (*p)[2][2] = C;

print(p) or print(C) - 800 print(*C) or print(C[0]) or print(&C[0][0]) - 800

int (*)[2]

C[i][j][k] = (C[i][j] + k) = ((C[i] + j) + k) = (((C + i) + j) + k)

print(C[0][1] + 1) - 9 print((C[1] + 1) or print(C[1][1]) or print(&C[1][1][0]) - 824