In Clion's debugger, how do I show the entire contents of an int array
问题 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. 回答1: Unfortunately, CLion doesn't currently support such feature. As suggested by JetBrains employee, you can use a workaround. In Evaluate / Watches window use the following expression: (MyType[128])myArray You can use arbitrary array size; whatever works