Posts by dromenox • 83 points
1 post
-
8
votes2
answers3219
viewsQ: C++ - Size of an array pointer
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 parameter. For…