I am currently doing an array in the following way:
char count[3][1] = {
["test"] = {0},
["prueba"] = {1},
["stack"] = {2}
};
The problem is that when compiling it does not recognize me well, because there are different types of data.
Any ideas to solve it, is the first time I work with arrays of this type.
Salutations and thanks.