void dynamicFileOutPut(int row, int column, unsigned char **image, char outroot[])
{
printf("%d row, %d column\n", row, column);
FILE *doutfile;
doutfile = fopen(outroot, "wb");
fwrite(image, sizeof(char), row * column, doutfile);
fclose(doutfile);
}//end function
이차원 배열을 동적으로 생성하려 적당한 파일처리를 한 후
배열을 저장하려 합니다.