c语言中如何像用函数strcpy复制字符串一样复制数字,如复制30。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言中如何像用函数strcpy复制字符串一样复制数字,如复制30。相关的知识,希望对你有一定的参考价值。
写一个函数即可。比如,可以写如下的一个函数:
int intncpy(int *des, int *src, int len)int i;
if (des == NULL || src == NULL || len <= 0)
return -1;
for (i = 0; i < len; i++)
*des++ = *src++;
return 0;
说明:
为了适合大多数情况,不方便像strcpy()一样,用“\\0”自动判别字符串结尾。因此用类似于strncpy()定长度的方式,进行数字拷贝。
其它数字类型,比如float, double, 都可以按照类似的方式,编制对应的ncpy()程序。
可以继续交流,谢谢。
参考技术A int a = 30;int b;
b = a; //这是不是你要的复制数字 //如果是复制数组,则用一个循环就可以
for(int i=0;i<_count;i++) //_count是数组数目
array1[i] = array2[i] //array1,array2是两个数组
参考技术B 如果是数字就直接赋值,例如int num=30;
如果是“30”,那么还是使用strcpy 参考技术C char *strcpy(char *dest,const char *src)
if(dest==NULL||src==NULL)
return NULL;
if(dest==src)
return dest;
char *temp=dest;
while((*dest==*stc++)!='\0')
retrun temp;
参考技术D 数字直接赋值就可以了
C语言 strcpy 函数
目录
零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C 语言基础入门
一.strcpy 函数简介
C
语言在 string.h
中strcpy
函数,可用完成 char 字符串拷贝,语法如下:
/*
*描述:此类函数是用于对字符串进行复制(拷贝)。
*
*参数:
* [in] strSource:需要拷贝的字符串
* [out] strDestination:拷贝完成之后的字符串
*
*返回值:指向 strDestination 这个字符串的指针
*/
char* strcpy(char* strDestination, const char* strSource);
注意:
1.strcpy
函数在拷贝过程中,如果遇到\'\\0\'
结束符,那么直接结束拷贝
2.如果使用 strcpy 函数提示 error:4996,请参考:error C4996: ‘fopen’: This function or variable may be unsafe
error C4996: \'strcpy\': This function or variable may be unsafe.
Consider using strcpy_s instead. To disable deprecation,
use _CRT_SECURE_NO_WARNINGS. See online help for details.
3.必须保证 strDestination
空间足够大,能够容纳 strSource
,如果 strDestination
内存空间大小比 strSource
更小,会导致溢出错误,引起程序崩溃!可以通过 sizeof
函数查看内存内存大小,举个例子:50ml
的水杯能倒进500ml
的水杯没问题,500ml
的水杯倒进 50ml
的水杯,会溢出很多水;
二.strcpy 函数实战
1.strcpy 函数简单使用
/******************************************************************************************/
//@Author:猿说编程
//@Blog(个人博客地址): www.codersrc.com
//@File:C语言教程 - C语言 strcpy 函数
//@Time:2021/06/03 08:00
//@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
/******************************************************************************************/
#include "stdafx.h"
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
#include "windows.h"
//error C4996: \'strcpy\': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
#pragma warning( disable : 4996)
void main()
{
char src[1024] = { "C/C++教程-strcpy函数 - www.codersrc.com" };
char dst[1024] = { 0 };
printf("strcpy之前 dst:%s\\n", dst); //空字符串
strcpy(dst, src);
printf("strcpy之后 dst:%s\\n", dst);//
printf("\\n");
system("pause");
}
/*
输出:
strcpy之前 dst:
strcpy之后 dst:C/C++教程-strcpy函数 - www.codersrc.com
请按任意键继续. . .
*/
2.strcpy 函数拷贝内容以’\\0’结尾
在 char
字符串中有作介绍,字符串默认都是 \'\\0\'
结尾,strcpy
函数在拷贝过程中,如果遇到\'\\0\'
结束符,那么直接结束拷贝,看下面例子:
/******************************************************************************************/
//@Author:猿说编程
//@Blog(个人博客地址): www.codersrc.com
//@File:C语言教程 - C语言 strcpy 函数
//@Time:2021/06/03 08:00
//@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
/******************************************************************************************/
char src[1024] = { "C/C++教程-strcpy函数\\0 - www.codersrc.com" };
char dst[1024] = { 0 };
printf("strcpy之前 dst:%s\\n", dst);
strcpy(dst, src);
printf("strcpy之后 dst:%s\\n", dst);
printf("\\n");
system("pause");
/*
输出:
strcpy之前 dst:
strcpy之后 dst:C/C++教程-strcpy函数
请按任意键继续. . .
*/
重上面的输出结果可以看出:strcpy
函数在拷贝的时候,如果遇到 \'\\0\'
,那么拷贝直接结束,所以上面使用 strcpy
拷贝的时候,dst
字符串明显少了一段字符" - www.codersrc.com"
;
3.strcpy 函数注意崩溃问题
如果使用 strcpy
的时候 strDestination
内存大小比 strSource
内存大小更小,程序运行会崩溃,strcpy
函数在字符串拷贝的时候并不会检查两个字符串大小,举个例子:
/******************************************************************************************/
//@Author:猿说编程
//@Blog(个人博客地址): www.codersrc.com
//@File:C语言教程 - C语言 strcpy 函数
//@Time:2021/06/03 08:00
//@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
/******************************************************************************************/
#include "stdafx.h"
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
#include "windows.h"
//error C4996: \'strcpy\': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
#pragma warning( disable : 4996)
void main()
{
char src[1024] = { "C/C++教程-strcpy函数\\0 - www.codersrc.com" };
char dst[10] = { 0 };
int len_src = sizeof(src)/sizeof(char); // 1024
int len_dst = sizeof(dst) / sizeof(char); //10
printf("len_src:%d len_dst:%d\\n", len_src,len_dst);
printf("strcpy之前 dst:%s\\n", dst);
strcpy(dst, src); // 很明显 dst 的空间大小并不能完全存放 src
printf("strcpy之后 dst:%s\\n", dst);
}
/*
输出:
len_src:1024 len_dst:10
*/
三.猜你喜欢
- 安装 Visual Studio
- 安装 Visual Studio 插件 Visual Assist
- Visual Studio 2008 卸载
- Visual Studio 2003/2015 卸载
- 设置 Visual Studio 字体/背景/行号
- C 语言格式控制符/占位符
- C 语言逻辑运算符
- C 语言三目运算符
- C 语言逗号表达式
- C 语言自加自减运算符(++i / i++)
- C 语言 for 循环
- C 语言 break 和 continue
- C 语言 while 循环
- C 语言 do while 和 while 循环
- C 语言 switch 语句
- C 语言 goto 语句
- C 语言 char 字符串
- C 语言 strlen 函数
- C 语言 sizeof 函数
- C 语言 sizeof 和 strlen 函数区别
- C 语言 strcpy 函数
未经允许不得转载:猿说编程 » C 语言 strcpy 函数
本文由博客 - 猿说编程 猿说编程 发布!
以上是关于c语言中如何像用函数strcpy复制字符串一样复制数字,如复制30。的主要内容,如果未能解决你的问题,请参考以下文章
c语言strcpy将一个结构体的数据复制到另一个后,出问题了