16 lines
254 B
C
16 lines
254 B
C
|
#include <stdio.h>
|
||
|
int main (void)
|
||
|
{
|
||
|
char *sep;
|
||
|
char *tab[50];
|
||
|
char *j;
|
||
|
|
||
|
tab[0] = "Hello";
|
||
|
tab[1] = "World";
|
||
|
tab[2] = "ffdsfadf";
|
||
|
sep = ";";
|
||
|
j = ft_strjoin(3, tab, sep);
|
||
|
printf("%s", j);
|
||
|
free(j);
|
||
|
return (0);
|
||
|
}
|