typedef struct { int **a; int **b; int **c; int i; } test_t; test_t *create(int i) { test_t *test = malloc(i * sizeof(test_t)); test->i = i;