String h C Tutorial

Item Value
Header filestring.h
Declarationchar *strcpy(char *str1, const char *str2);
Functioncopies *str2 into *str1. *str2 must be a pointer to a null-terminated string.
Returnreturns a pointer to str1.

#include
#include
int main(void){
  char str[80];
  strcpy(str, "hello");
  printf("%s", str);
}
hello