strcpy Function

  • It copies *str2 into *str1. *str2 must be a pointer to a null-terminated string .
  • It returns a pointer to str1 .


  • Syntax:

      char *strcpy(char *str1, const char *str2);

    Example:

    #include <string.h>
    
    #include <stdio.h>
    
    
    
    int main(){
    
      char str[80];
    
      strcpy(str, "hello");
    
      printf("%s", str);
    
    return 0;
    
    }
    Back