Is there a difference between &array[0] and &array when passed to a C Function. This array is a void* array which currently takes integer as data.
Added the
Yes there is a big different
&array[0]==>void**
AND
&array==>void***