const char *hey(const char *arr[])
{}
If I am given the above function, how would I be able to find the length of the array passed in as parameter? Is it strlen? If it is not, could you please explain to me why you can't use strlen here?
const char *hey(const char *arr[])
{}
If I am given the above function, how would I be able to find the length of the array passed in as parameter? Is it strlen? If it is not, could you please explain to me why you can't use strlen here?