encode int to string code example
Example 1: integer to stringc
int someInt = 368;
char str[12];
sprintf(str, "%d", someInt);
Example 2: int to string
print(str(69420))
int someInt = 368;
char str[12];
sprintf(str, "%d", someInt);
print(str(69420))