I came to know about two method of passing 1 D array to a function.
void bubbleSort(int *arr, int len); //Here I am passing arr as a pointer to the array.
void bubbleSort(int arr[], int len); //Here I am not sure.. but arr is a const pointer.
calling of both the function are same, then what is the difference and what is the benefit for the two function definition?