Or, you can assign a String literal to the String! You can only do this in the declaration of the String however, and nowhere else.

    char string_name[size + 1] = “String literal”;

String literals are enclosed in “ ” (double quotes).

Also, the ‘\0’ here is implicitly included. No need to explicitly put ‘\0’.