there is function :
int median(int a[], int b[])
{
}
how do i find the number of elements in a and b?
i am doing sizeof(a)/sizeof(int) but it does not give right results.
P.S. i need to submit the function only in online compiler so i dont know what is the length of array.