博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
std::strncpy 简介
阅读量:6787 次
发布时间:2019-06-26

本文共 1099 字,大约阅读时间需要 3 分钟。

std::strncpy

 
Defined in header 
<cstring>

 char *strncpy( char *dest, const char *src, std::size_t count );

If 
count is reached before the entire string 
src was copied, the resulting character array is not null-terminated.Copies at most 
count characters of the byte string pointed to by 
src (including the terminating null character) to character array pointed to by 
dest.

If, after copying the terminating null character from srccount is not reached, additional null characters are written todest until the total of count characters have been written.

If the strings overlap, the behavior is undefined.

Parameters

dest    pointer to the character array to copy to

src    pointer to the byte string to copy from

count    maximum number of characters to copy

Return value

dest

Example

1 #include 
2 #include
3 using namespace std; 4 5 int main () 6 { 7 char str1[]= "To be or not to be"; 8 char str2[6]; 9 strncpy (str2,str1,5);10 str2[5]='\0';11 cout<

Output:

1  To be

 

转载于:https://www.cnblogs.com/kevinGaoblog/archive/2012/07/20/2601293.html

你可能感兴趣的文章
web安全实践系列导航
查看>>
[Oracle]GoldenGate官方文档
查看>>
第 42 章 WMware
查看>>
动感的网页相册
查看>>
Nginx的反向代理与负载均衡
查看>>
redis之(十四)redis的主从复制的原理
查看>>
Velocity入门指南
查看>>
ntp redhat
查看>>
sum(case when status=1 then 1 else 0 end) 的意思
查看>>
Win7硬盘安装方法
查看>>
python - 列表
查看>>
UIVisualEffectView用法
查看>>
springmvc+mybatis整合cms+UC浏览器文章功能
查看>>
docker安装(centos6.5_x86_64)
查看>>
mysql悲观锁与乐观锁
查看>>
ubuntu下python2-python3版共存,创建django项目出现的问题
查看>>
2018.4.3三周第二次课
查看>>
eclipse_jee版本提供了从数据库直接生成实体类的工具!
查看>>
Error: Can't set headers after they are sent
查看>>
本地用户模式、虚拟用户模式使用
查看>>