init
This commit is contained in:
12
Test/c03/ex05/main.c
Normal file
12
Test/c03/ex05/main.c
Normal file
@ -0,0 +1,12 @@
|
||||
#include <stdio.h>
|
||||
int main()
|
||||
{
|
||||
char src[] = "hello";
|
||||
char dest2[5] = "fjff";
|
||||
int j;
|
||||
|
||||
j = ft_strlcat(src, dest2, 5);
|
||||
|
||||
printf("%d %s\n", j, dest2);
|
||||
}
|
||||
|
Reference in New Issue
Block a user