If you have a multidimensional array (k) it is actually an array of arrays. (k) points to the address of the first element of the entire array (&k[0]). Since (k[0]) is itself an array, it points to the address of the first element contained inside it (&k[0][0]). Since both point to the same location it can be said that (k) and (k[0]) have the same value.
So k merely points to the first array, inside the array.