首页 > 其他 > 详细

关于strcpy_s

时间:2016-10-26 00:57:21      阅读:194      评论:0      收藏:0      [点我收藏+]
#include"stdafx.h"
#include<iostream>
#include<cstring>
int main()
{
    using namespace std;

    char animal[20] = "bear";
    const char* bird = "wren";
    char* ps;

    cout << "Enter a kind of animal: ";
    cin >> animal;
    ps = animal;

    cout << "Before using strcpy_s(): " << endl;
    cout << animal << " at " << (int *)animal << endl;
    cout << ps << " at " << (int*)ps << endl;

    ps = new char[strlen(animal) + 1];
    cout << "sizeof ps: " << sizeof ps << endl;
    strcpy_s(ps,strlen(animal)+1, animal);
    cout << "After using strcpy_s(): " << endl;
    cout << animal << " at " << (int *)animal << endl;
    cout << ps << " at " << (int*)ps << endl;

    delete [] ps;
    cin.get();
    cin.get();
    return 0;
}

strlen 三个参数的情况下,第二个参数表示numberOfElements 

关于strcpy_s

原文:http://www.cnblogs.com/heben/p/5998682.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!