There are several ways to populate char arrays (and strings). As Arrch points out, using a char to fill an element in the array is one way.
Using strcat() and memset() are others, depending on what you want to set the array to, and how much of the array you want to overwrite.