#include #include int main(void) { char s[] = "abcdefegsdbx"; char d[14]; memcpy(d, s, sizeof(char) * 14); printf("d: %s\n, d"); return 0; }