I have a code something like this, but I want to display it in two dimensional array like 4*10. I'm thinking of copying the elements of one dimensional array to two dimensional. But how can i edit this below code. Thank you.
long int arr[40];
printf("The Fibonacci range is: ");
arr[0]=0;
arr[1]=1;
for(i=2;i<range;i++){
     arr[i] = arr[i-1] + arr[i-2];
}
  for(i=0;i<range;i++)
     printf("%ld ",arr[i]);

