tags:

views:

31

answers:

2

i have a word written like 0x46697273 how i can read symbols in gdb console ?

A: 

Cast it to a char pointer, something like (char *)var.

Sjoerd
A: 

You mean a character array located at that address?

Try using x/s 0x46697273 .

Borealid
0x46697273: <Address 0x46697273 out of bounds>
RusAlex
@RusAlex: they you're going to have to clarify what "a word written like 0x46697273" means in English.
Borealid