c 函数例子(学习自用)

#include "stdafx.h"
#include <string.h>
void copyFun(char *, char *);

int main(int argc, char* argv[])
{
 char a[10] = "abc";
 char b[10];
 memset(b,0,sizeof(b));
 copyFun(a,b);
 printf("b is: %s",b);
 return 0;
}

void copyFun(char *from, char *to)
{
 memcpy(to,from,sizeof(from));
}

你可能感兴趣的:(c 函数例子(学习自用))