// copy a string from the original to the destination 2 // and return the number of characters copied 3 int mystrcpy(char *destination, char *original) { 4 int count = 0; 5 while (*original != '\0') { 6 *destination = *original ; 7 // INSERT MISSING CODE 8 } 9 *destination = *original; 10 return count; 11 }