Right now it is only showing the first element of the array but I want a visual of all the elements in the array. I think Clion is using GDB.
EDIT: I am referring specifically to arrays on the heap. Arrays on the stack can be visualised.
The answer by cubuspl42 works for GDB. But if you're on a Mac using LLDB as your debugger, the correct method is
(MyType(*)[128])myArray
Hope this helps!