I need to calculate the size from the function but it keeps said error dividing sizeof a pointer by another value
int Get_size(int a[])
{
return sizeof(a) / sizeof(a[0]);
}
int main()
{
int arr[] = { 1,3,5,6 };
std::cout << Get_size(arr);
}```