Hi,
In given example in help page :
char Str1[15];
char Str2[8] = {'a', 'r', 'd', 'u', 'i', 'n', 'o'};
char Str3[8] = {'a', 'r', 'd', 'u', 'i', 'n', 'o', '\0'};
char Str4[ ] = "arduino";
char Str5[8] = "arduino";
char Str6[15] = "arduino";
In program, I can't find how to copy Str6 to Str1 !!!
I tried something like this :
Str1 = Str6;
or Str1 = Str6;
but returns a compilation error.
I guess it's very simple but couldn't find how to do this, even after reading and browsing pages and pages!
Thanks.