#include #include int main(void) { char str[8]; char str2[] = "Leon"; strcpy(str, "Mathilda"); printf("%s\n", str); printf("%s\n", str2); return 0; }