Memcpy

Nasza ocena:

3
Wyświetleń: 833
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Memcpy - strona 1 Memcpy - strona 2

Fragment notatki:

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)

Zaloguj się, aby dodać komentarz