first commit
This commit is contained in:
9
ended/C03-corr/ex03/strncat.c
Normal file
9
ended/C03-corr/ex03/strncat.c
Normal file
@ -0,0 +1,9 @@
|
||||
#include <stdio.h>
|
||||
int main(void)
|
||||
{
|
||||
char ff[20] = "addfs ";
|
||||
char fl[20] = "adfda";
|
||||
|
||||
ft_strncat(ff, fl, 9);
|
||||
printf("%s", ff);
|
||||
}
|
Reference in New Issue
Block a user