c_piscine__offshore_mains/c02/ex00.c
2023-11-23 01:34:57 +04:00

10 lines
129 B
C

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