10 lines
123 B
C
10 lines
123 B
C
|
#include <stdio.h>
|
||
|
int main(void)
|
||
|
{
|
||
|
char *cpy = ft_strdup("lll lll fff");
|
||
|
|
||
|
printf("%s", cpy);
|
||
|
free(cpy);
|
||
|
return (0);
|
||
|
}
|