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