ft_range
école 42 > exam02 > exam02 : part3 > ft_range
공략법
- 배열의 사이즈 = abs(end - start) + 1
- start ~ end 까지 배열에 넣어줘야 함.
- start부터 배열에 넣어줘야 함!
- 이때, start ≤ end 면 start를 늘려가면서 넣어주기
- 한편, start ≤ end 면 start를 줄여가면서 넣어주기
문제
Assignment name : ft_range
Expected files : ft_range.c
Allowed functions: malloc
--------------------------------------------------------------------------------
Write the following function:
int *ft_range(int start, int end);
It must allocate (with malloc()) an array of integers, fill it with consecutive
values that begin at start and end at end (Including start and end !), then
return a pointer to the first value of the array.
Examples:
- With (1, 3) you will return an array containing 1, 2 and 3.
- With (-1, 2) you will return an array containing -1, 0, 1 and 2.
- With (0, 0) you will return an array containing 0.
- With (0, -3) you will return an array containing 0, -1, -2 and -3.