I have char* type variable that contains some data at this address can be visible while debugging:
But I would like to see more data at this pointer, not just first character, I would like to see A[0]...A[16] array. How to achieve that?
Debugger shows that I have data "x\0340"
that might be represented as 0x7fffffffd070
. x
according ascii table is 0x78
, but there is no such value in hex representation. Why?
UPD
Can I assume that I have string that's first three characters are "\b<"
and forth one is 027 in Octal
(or 0x17
) ?