10 lines
128 B
C
10 lines
128 B
C
|
|
||
|
#include <stdio.h>
|
||
|
int main(void)
|
||
|
{
|
||
|
char ff[20] = "addfs f";
|
||
|
char fl[20] = "adfda";
|
||
|
|
||
|
ft_strcat(ff, fl);
|
||
|
printf("%s", ff);
|
||
|
}
|