I have an array:
char *exemplo[] = {"item1", "item2", "item3"};
And a function:
void myFunc(**myArray)
{
}
So, I want a function that returns the size of this array that I passed as a parameter. For example if I pass the array exem...
asked on
16.05.2014 / 21:18