I cannot find the correct solution or I get an error for something that is very simple in C: how can I convert/move data from a table to string?
The C equivalent of what I am trying to do is:
for (i=0; i <10; i++)
{
string[i] = table[i]
}
I can convert from string to table with :byte(i) but I don't understand how to append a sign in string.
{"x", "y", "z"}, and you want"xyz"?