I have a function that uses 2 array strings defined similar to this... const char[] array1 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; char[] array2 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
If I make a change to a char in array1 it also changes the same in array2. But if I define the arrays as follows... const char[26] array1 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; char[26] array2 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; It doesn't occur. Is this expected behaviour? Regards, -=mike=-
