char类:
1.strcpy(s1,s2);将s2为起始地址的字符串复制到s2中。
2.strncpy(s1,s2,k);将s2为起始地址的字符串的前k个复制到s1中。
char s1[20],s2[20]; cin>>s2; int k=4; strncpy(s1,s2,k); s1[k]='