정리중...
#include <stdlib.h>
int **array1 = malloc( row * sizeof(int *));
for (i = 0; i < row; i++)
array1[i] = malloc( col * sizeof(int));
또는
int **array2 = malloc( row * sizeof(int *));
array2[0] = malloc( row * col * sizeof(int));
for (i = 1; i < row; i++)
array2[i] = array2[0] + i * col;
'0x0001 > C, C++' 카테고리의 다른 글
[C언어] 문자열 i am a boy -> yob a ma i -> boy a am i 변환 (0) | 2019.02.08 |
---|---|
[C++] const, static 클래스 멤버 (0) | 2019.02.08 |
[C언어] 함수 포인터, void형 포인터 (0) | 2019.02.07 |
[C언어] 다차원 배열, 다중 포인터 (0) | 2019.02.07 |
[C언어] const 키워드 (0) | 2019.02.07 |