I have a double array a[1] which containing 2 doubles.
a[0]=36.78;
a[1]=45.78;
Is it possible to transform them into 2 strings and put them in a string array?
thanks
You can do this to convert double to string:
double d = 123456.1234567899;
char s[50];
sprintf(s,"%f", d);
printf("%s\n", s);
And then create one string array like this
And finally you only need to bind this two things