Chinaunix首页 | 论坛 | 博客
  • 博客访问: 541054
  • 博文数量: 129
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1888
  • 用 户 组: 普通用户
  • 注册时间: 2013-06-20 11:09
文章分类

全部博文(129)

文章存档

2016年(1)

2015年(5)

2014年(64)

2013年(59)

我的朋友

分类: C/C++

2013-07-15 13:31:30


  1. #include<iostream>
  2. #include<assert.h>
  3. using namespace std;


  4. char* strncpy(char*desStr,const char *srcStr,int count)
  5. {
  6.     assert(desStr!=NULL && srcStr!=NULL);
  7.     char *address=desStr;
  8.     while(count-- && (*srcStr)!='\0')
  9.         *desStr++=*srcStr++;
  10.     *desStr='\0';    //重点在于最后要加'\0'
  11.     return address;

  12. }

  13. int main()
  14. {
  15.     int n;
  16.     char dest[100];
  17.     char* src="hello,world";
  18.     printf("please input the number you want to copy:");
  19.     scanf("%d",&n);
  20.     strncpy(dest,src,n);
  21.     printf("%s",&dest);
  22.     cout<<endl;    
  23.     return 0;


  24. }

阅读(674) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~