参考Clion debug查看数组中的内容,新版本有所变化
众所周知,进入函数的数组debug不显示内容,解决办法如下:
在Evaluate expression中输入 *(int(*)[10])(数组名)
*(int(*)[10])(数组名)