following is the structure and I want to create array of this structure in C and initialize, but confuse with how to initialize char **input and char **output.
typedef struct _test_data_vector {
char *api;
char **input;
char **output;
}vector_test_data;
following is what I tried.
typedef struct _test_data_vector {
char *api;
char **input;
char **output;
}vector_test_data;
vector_test_data data[] = {
{
"vector_push_back",
{"1","2","3","4","5","6","7","8","9","10"},
{"1","2","3","4","5","6","7","8","9","10"}
}
};