To examine memory without dependence on the program's data type gdb provides the x command with follow syntax,
x/nfu addr
Here the /nfu is optional, where
n - how much memory to display in count according to the option u. Negative sign at front will cause the read with decremented address
f - display format
u - unit size. For E.g., 'h' correspond to halfwords
For the given structure, read for two integer sizes according to your machine will give the structure content. The first integer for the value of n and second for the pointer address. So here for two word read,
x/2uw 0x61b2e0
p *((s_a*)(0x61b2e0))