Memmove

Nasza ocena:

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

Pobierz ten dokument za darmo

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

Fragment notatki:

Memmove  void *memmove(void *dest, const void *src, size_t n);  Copies a block of n bytes from src to dest  Even when the src and dest blocks overlap, bytes in the overlapping locations are copied correctly #include #include int main() { char dest[] = "abcdefghijklmnopqrstuvwxyz0123456789"; char *src = "******************************"; printf("destination prior to memmove: %s\n", dest); memmove(dest, src, 26); printf("destination after memmove: %s\n", dest); return 0; } destination prior to memmove: abcdefghijklmnopqrstuvwxyz0123456789 destination after memmove: **************************0123456789 ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz