#include<cstring> // or string.h int main(){ char a[4],b[]={"hello"}; memcpy(a,b,strlen(b)*sizeof(char));//destination,source,size*sizeof(type) }