Mega Code Archive

 
Categories / C / String H
 

Strcpy

//Declaration:  char *strcpy(char *str1, const char *str2);  //Return:       returns a pointer to str1.  #include<string.h> #include<stdio.h> int main(void){   char str[80];   strcpy(str, "hello");   printf("%s", str); }                   /* hello*/