Strncpy

Nasza ocena:

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

Pobierz ten dokument za darmo

Podgląd dokumentu
Strncpy - strona 1

Fragment notatki:

Strncpy  char *strncpy(char *dest, const char *src, size_t maxlen);  Copies at most maxlen characters of src to dest  The target string might not be null-terminated if the length of src is maxlen or more #include #include int main(void) { char string[10]; char *str1 = "first"; strncpy(string, str1, 3); string[3] = '\0'; /* otherwise '\0' would be missing */ printf("%s\n", string); return 0; } /* The result: fir */ ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz