2条回答 默认 最新
不会写代码的仓鼠 2018-10-06 09:20关注这个现象是因为使用scanf输入的时候输入空格后,自动认为输入结束,如下解析:
#include <stdio.h> #include <stdlib.h> #include<string.h> int main() { char src[80]={'\0'}; char dest[80]={'\0'}; char *p=src; printf("请输入一串字符:"); scanf("%s",p); /*当输入hello,nice to meet you!时,遇到“nice”后的空格认为输入结束, 所以只保存了前一部分内容“hello,nice”*/ strcpy(dest,src); printf("执行strcpy前dest的内容:\n"); printf("执行strcpy前dest的内容:%s",dest); return 0; }建议使用gets函数输入字符可以避免上述情况,代码如下:
#include <stdio.h> #include <stdlib.h> #include<string.h> int main() { char src[80]={'\0'}; char dest[80]={'\0'}; char *p=src; printf("请输入一串字符:"); gets(p); strcpy(dest,src); printf("执行strcpy前dest的内容:\n"); printf("执行strcpy前dest的内容:%s",dest); return 0; }运行如下:
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报


