码迷,mamicode.com
首页 > 其他好文 > 详细

strcpy和strcat易忽略点

时间:2017-08-26 23:32:26      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:stdio.h   效果   数字   string   rcp   blog   std   malloc   cat   

首先来看一段C程序:

 1 #include <stdio.h>
 2 #include <string.h>
 3 #include <stdlib.h>
 4 
 5 void GetMem(char*& pstr){//注意必须要用指针的指针或者指针的引用。如果传本身,返回的已经是空悬指针了
 6     pstr=(char*)malloc(20);
 7 }
 8 
 9 int main(){
10     char* str;
11     GetMem(str);
12 
13     strcpy(str,"Hello");
14     strcat(str+3,"World");//这里加的数字只要不超过Hello的长度都是一样的效果,最终都会寻找到末尾的0,然后连接
15     printf("%s",str);
16     return 0;
17 }

再看一段:

1 #include<stdio.h>
2 #include<string.h>
3 main()
4 {
5     char *p1="abc",str[50]="xyz";
6     strcpy(str+2,p1);
7     printf("%s\n",str);//xyabc,注意是从第2个位置开始覆盖的
8 }

特别要注意这两个函数的异同。

strcpy和strcat易忽略点

标签:stdio.h   效果   数字   string   rcp   blog   std   malloc   cat   

原文地址:http://www.cnblogs.com/xiaoxi666/p/7436614.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!