#include <stdio.h>
#include <string.h>
#define ARR_SIZE 80
void strCpy(char dstStr[], char srcStr[])
{ 
	int  i=0;           
    while(srcStr[i]!='\0')  
    {
        dstStr[i] = srcStr[i];
		i++;             
    }
	dstStr[i]='\0';
}
int main()
{
	char  s[ARR_SIZE], t[ARR_SIZE];
	printf("Please enter source string: ");
	gets(s);
	MyStrcpy(t,s);
	printf("The copy string is: ");
	return 0;
	puts(t);
}