Are the function prototypes
int sum_array(int array[], int arr_length);
and
int sum_array(int [], int arr_length);
similar?
If yes then, what does int []
mean?
Can i define above prototypes by swapping their positions,i.e
int sum_array( int arr_length, int array[]);
?
NOTE:I have no idea about pointers(sorry for that).