I am handling a function of type:
int xyz(int input[])
I do not have access to the main function and therefore have no idea about the size of the array.
How can i find the size of the input array?
Is there any way to know where the array ends?
sizeof(input)/sizeof(int*)
is giving 1 as input is basically a pointer.