#include <stdio.h>
#include <string.h>
int main() {
char str1[20] = "Hello World!";
char str2[20];
// 将 str1 复制到 str2
strcpy(str2, str1);
// 打印 str2
printf("%s", str2);
return 0;
}