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
Better use std::vector
If you use a dynamically allocated raw array you are expected to keep track of its size yourself, the size cannot be obtained from the array. Best save it in an extra variable.