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