📅  最后修改于: 2022-03-11 14:44:51.341000             🧑  作者: Mango
#include // or string.h
int main(){
char a[4],b[]={"hello"};
memcpy(a,b,strlen(b)*sizeof(char));//destination,source,size*sizeof(type)
}