42_C_PISCINE/Test/c08/ex04.c

15 lines
246 B
C
Raw Normal View History

2023-05-17 12:45:25 -04:00
int main(int ac, char **av)
{
t_stock_str *tab;
int i;
tab = ft_strs_to_tab(ac, av);
i = 0;
while (i < ac)
{
printf("size = %d, str = %s, copy = %s\n", tab[i].size, tab[i].str, tab[i].copy);
i++;
}
}