int *arr[3]; arr[0] = m[0]; arr[1] = m[1]; arr[2] = m[2]; Each initializer ( m[0] , m[1] , and m[2] ) is a 4-element array of int ; however, under most circumstances, an expression of type "array of T " will be converted ("decay") to an expression of type "pointer to T ", and the value of the expression will be the address of the first element ... More @Wikipedia
Hover over any link to get a description of the article. Please note that search keywords are sometimes hidden within the full article and don't appear in the description or title.