Can somebody tell me how to interpret the following code? I know how to use blocks to initialize multi-dimensional arrays, but exactly what the null does in this example has me stumped. What will the contents of the whole array be? Thanks.
int arry[][] = { {1, 2}, null };`
`