42_C_PISCINE/Test/c07/ex00.c

13 lines
183 B
C
Raw Normal View History

2023-05-17 12:45:25 -04:00
#include <stdio.h>
int main()
{
char src[] = "test";
char *dest;
dest = ft_strdup(src);
printf("%s %p \n", src, &src);
printf("%s %p \n", dest, &dest);
}