codice:
void mystrcpy(char *a, char *b)
{
    while(*a++=*b++);
}