To tylko jedna z 2 stron tej notatki. Zaloguj się aby zobaczyć ten dokument.
Zobacz
całą notatkę
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)