I have been playing around with programming for arduino but today i\'ve come across a problem that i can\'t solve with my very limited C knowledge. Here\'s how it goes. I\'m
For dynamic allocation of memory, you will need to use malloc, ie:
String returnvalue[splitcount]; for(int i=0; i< splitcount; i++) { String returnvalue[i] = malloc(maxsizeofstring * sizeof(char)); }
You will also need the maximum string length.