its possible to pass part of an array to a function.what does this point exactly mean relating to array and pointers in the pdf.example please…
Array and pointers
I am guessing you have knowledge aboit sort function, so when you call sort() function. You call it sort(a,a+n) where a is the array and n is the size of that array. What a+n means from 0 to n elements of array a. So sort will sort all the elements from 0 to n in array a. Instead of n you can pass any value less then or equal to n . This is what means that part of array can be passed in function.