Strcpy

Nasza ocena:

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

Pobierz ten dokument za darmo

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

Fragment notatki:

Strcpy  char *strcpy(char *dest, const char *src);  Copies string src to dest - (order of arguments: like in an assignment ”dest=src”) #include #include int main() { char string[10]; /* long enough to hold a copy of str1 */ char *str1 = "first"; strcpy(string, str1); printf("%s\n", string); return 0; } /* strcpy: copy t to s; array subscript version */ void strcpy(char *s, char *t) { int i; i = 0; while ((s[i] = t[i]) != '\0') i++; } /* strcpy: copy t to s; pointer version */ void strcpy(char *s, char *t) { int i; i = 0; while ((*s = *t) != '\0') { s++; t++; } } ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz