之前,一直以为strcpy的作用是复制内容
#include <iostream>
#include <cstring>
int main() {
char str[20] = "I am a student.", *p = str;
char *q = "You are a teacher.";
p = p + 7;
q = q + 10;
strcpy(p, q);
puts(str);
return 0;
}
该程序的运行结果为
strcpy ()函数拷贝之后,是将某一地址的字符串复制到另外一地址中,会将该地址中本身存在的字符串的一部分给覆盖掉。在这个程序里p = p + 7, 指向s前的空格;q = q + 10, 指向t,复制后得到结果