first commit
This commit is contained in:
15
ended/C07-corr/ex01/ft_range.c
Normal file
15
ended/C07-corr/ex01/ft_range.c
Normal file
@ -0,0 +1,15 @@
|
||||
#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);
|
||||
}
|
Reference in New Issue
Block a user