String H C

//Declaration:  size_t strxfrm(char *str1, const char *str2, size_t  count); 
//Return:       returns the length of the transformed string. 
  #include 
  #include 
  int main(void)
  {
    char *s1 = "asdfasdfasdf";
    char *s2 = "asdfasdfasdf";
   
    strxfrm(s1, s2, 10);
  }