first commit
This commit is contained in:
9
ended/C07-corr/ex00/ft_strdup.c
Normal file
9
ended/C07-corr/ex00/ft_strdup.c
Normal file
@ -0,0 +1,9 @@
|
||||
#include <stdio.h>
|
||||
int main(void)
|
||||
{
|
||||
char *cpy = ft_strdup("lll lll fff");
|
||||
|
||||
printf("%s", cpy);
|
||||
free(cpy);
|
||||
return (0);
|
||||
}
|
Reference in New Issue
Block a user