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.

15 lines
150 B
C
Raw Normal View History

2023-08-06 20:12:38 +02:00
#include <stdio.h>
int main(void)
{
int *l = ft_range(5, 10);
int i = 0;
while(l[i])
{
printf("%d", l[i]);
i++;
}
free(l);
return (0);
}