I\'m trying to simply print out the values contained in an array.
I have an array of strings called \'result\'. I don\'t know exactly how big it is because it was au
template< class T, size_t N > std::size_t Length(const T(&)[N]) { return N; }; std::cout << Length(another_array) << std::endl;