I have a char [], and I want to set the value of every index to the same char value. There is the obvious way to do it (iteration):
char []
char
<
If you have another array of char, char[] b and you want to replace c with b, you can use c=b.clone();.
char[] b
c
b
c=b.clone();