#include <stdio.h>
#include <string.h>

int main(void) {
	/* SIZE is the number of array */
    char (*array)[10][10+1] = malloc(5*sizeof(*array));
    
    // Exemple
    strcpy(array[0][0], "hello, world");
    printf("%s\n", array[0][0]);
	return 0;
}
