程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 字符串copy,memcpy

字符串copy,memcpy

編輯:關於C語言

字符串copy,memcpy


#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
#include<string.h>



//字符串copy操作

//字符串copy函數
void copy_str21(char *from,char *to)
{
    for (; *from != '\0'; from++, to++)
    {
        *to = *from;
    }
    *to = '\0';
    return;
}
void copy_str22(char *from,char *to)
{
    while(*to++ = *from++);
}
int main()
{
    char *from ="abcdefg";
    char buf2[100];
    /*copy_str21(from,buf2);
    printf("buf2:%s\n",buf2);*/
    copy_str22(from, buf2);
    printf("buf2:%s\n", buf2);
    system("pause");
    return 0;
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved