Let\'s say I have an array in C++:
double* velocity = new double[100];
Using the GDB command line, I can view this array with the command:<
As of Xcode 10, you can right-click velocity, choose "View value as..." and then "Custom Type". Then cast it to (double(&)[100]) *velocity and display the array in the GUI.
velocity
(double(&)[100]) *velocity