I wonder what the double V[] stands for. And also why do i write double X[size].
What i can see is that i call the function enter_seq and there i have a array which can store 10 numbers int f. but what does double V[] do.
...is equivalent to: double *V. When you pass an array to it, it points to the first element of the passed array. I guess you can say it's used to explicitly state that you want an array to be passed.