STRCPY()

char *strcpy(char *destination, char *source);
strcpy(destination, source);

 * makes a copy of a string pointed to by source and stores it at the location 
   pointed to by destination.
    - copying involves all the characters of the string source, including the null 
      character at the end

Last updated