strcpy - C++ Reference - cplusplus.com So in most case, you use it like strcpy Arduino /* Using the string table in program memory requires the use of special functions to retrieve the data. #include #include #include … char *strcpy(char *dest, const char *src) Parameters. Consider, you have a char array of animal names separated by a comma, and you want to separate each name from the char array.In this case, you can use the strtok() function to separate the animal … Declaration. char * strcpy (char *dest, char *src); Mit String Copy können wir den Inhalt eines Strings kopieren. vasilenko93 @Cubbi, yeah I made it a void and everything worked out. Arduino has an added capability for using an array of characters known as String that can store and manipulate text strings. PROGMEM is part of the pgmspace.h . a char array Example: strcpy /* strcpy example */ #include #include int main { char str1[]="Sample string"; char str2[40]; char str3[40]; strcpy (str2, st Normalerweise macht man da ein CHR(0) ans Ende. Arduino String Functionality