C Tutorial/string.h/strcpy

Материал из C\C++ эксперт
Версия от 13:32, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

strcpy

Item Value Header file string.h Declaration char *strcpy(char *str1, const char *str2); Function copies *str2 into *str1. *str2 must be a pointer to a null-terminated string. Return returns a pointer to str1.


<source lang="cpp">#include<string.h>

  1. include<stdio.h>

int main(void){

 char str[80];
 strcpy(str, "hello");
 printf("%s", str);

}</source>