#include int main(void) { int *l = ft_range(5, 10); int i = 0; while(l[i]) { printf("%d", l[i]); i++; } free(l); return (0); }