I'm trying to retrieve some text from a char array, like this:
unsigned char some_variable[3][10] = {"text1","text2","text3"};
int i;
for(i=0;i<3;i++){
functionIcantChange(some_variable[i])
}
I'm getting this issue since this functionICantChange takes aguments like "hello" and "world" with " characters included. And by calling for example some_variable[0] I just get text1 for example.
I need to add the " character to the array before passing the array to the function. How could I do this?