#include
using namespace std;
char *mystrcpy(char *dst, const char *src)
{

  //Declare a pointer and point it
  //to the destination string
  char *ptr;
  ptr = dst;

  //Copy the source string to the
  //destination string
  while(*dst++=*src++);

  //return the pointer to the destination string
  return(ptr);

}

int main()
{
  char source[100], dest[100];
  cout<<”\nEnter the source=”;
  cin.getline(source, 100);
  cout<<”\nThe destination is=”<   return 0;
}