1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
2023-08-06 20:12:38 +02:00

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);
}