c_piscine__offshore_mains/c02/ex00.c

10 lines
129 B
C
Raw Normal View History

2023-11-22 21:34:57 +00:00
char *ft_strcpy(char *dest, char *src);
int main(void)
{
char s[100] = "hello";
char d[100] = "goodbye";
ft_strcpy(s, d);
}