To tylko jedna z 2 stron tej notatki. Zaloguj się aby zobaczyć ten dokument.
Zobacz
całą notatkę
Memcpy void *memcpy (void *dest, const void *src, size_t n); Copies a block of n bytes from src to dest If src and dest overlap, the behavior is Undefined #include #include int main() { char src[] = "******************************"; char dest[] = "abcdefghijlkmnopqrstuvwxyz0123456709"; char *ptr; printf("destination before memcpy: %s\n", dest); ptr = (char *) memcpy(dest, src, strlen(src)); if (ptr) printf("destination after memcpy: %s\n", dest); else printf("memcpy failed\n"); return 0; } destination before memcpy: abcdefghijlkmnopqrstuvwxyz0123456709 destination after memcpy: ******************************456709
... zobacz całą notatkę
Komentarze użytkowników (0)