How can I get the length of the array 'source'? I have this so far I was wondering if anyone had any suggestions. Thank you
For size I get -2074.
I do not know the length of the array, it's a random input.
#include <ctype.h>
int StrToUpper(char *destination[], const char *source[])
{
int size = *(&source + 1) - source;
return size;
}