I have a 2d array matrix[10][10] that I\'d like to inspect at debug time.
I understand that I can do this in GDB using
p *matrix@10
You can also use try p (float[n][m])Array to print a 2d array in gdb. For example, p (float[3][3])*C
p (float[n][m])Array
p (float[3][3])*C