2차원 배열 int image[5][5]; int mask[3][3]; int result[3][3]; 얘네한테 접근할 때 int (*a)[5]= image; int (*b)[3]=mask; int (*c)[3]=result; 이렇게 접근해서 푸는 거 맞나요?