In some kind of applications that I used to “change” something in the executable files requires a proper addresses with the 0x in the beginning. For example: 0x2FF0C4.
The question is, what are those addresse and how can I get them?
I’ve searched a lot before creating this question, but the address phrase in the search engines provides large amount of records, because I don’t know the way, how can I ‘name’ it.
I guess it’s some kind of memory address ?
Can’t beat Rouhani’s simple answer but here’s a little more information on memory addresses:
“Addresses” on computers are usually assumed to be “memory addresses” that identify locations on RAM. By convention, locations on RAM are denoted by hexadecimal because they are commonly encountered in powers of two i.e. pages; thus, it’s arithmetic is easier with hexadecimal.
Edit: I realized that you answered your own question.