C/string.h/strcpy

Материал из C\C++ эксперт
Перейти к: навигация, поиск

strcpy: copies *str2 into *str1. *str2 must be a pointer to a null-terminated string

<source lang="cpp">


//Declaration: char *strcpy(char *str1, const char *str2); //Return: returns a pointer to str1.

  1. include<string.h>
  2. include<stdio.h>

int main(void){

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

}

       /*

hello*/

      </source>