char *ft_strcpy(char *dest, char *src); int main(void) { char s[100] = "hello"; char d[100] = "goodbye"; ft_strcpy(s, d); }