전에 올린 글에서 너무 어렵게 풀었다.. 더 쉽게 풀 수 있는 방법이 있었다. arr[i]와 *(arr+i)가 동일함을 잊지말것! malloc함수가 배열을 주는 것이 아님... //두개의 1차원 배열을 포함하는 포인터 배열을 선언하고 출력 //이중포인터 이용 포인터 배열 내 mat1과 mat2 위치 바꾸어 출력 #include #include int* input(int* x, int s); void change(int** x); int main(void) { int n, m,i;//n,m : 각각의 배열 크기/i : 반복문에 쓰일 변수 printf("각각의 배열 몇개?: "); scanf("%d %d", &n, &m); //malloc이용해 배열생성 int *mat1 = (int *)malloc(size..