Quote:
Originally Posted by cheatcarrot
Pleaasssee.... can anyone show me a simple example on how to define an address(in Array of bytes) in C++ and how to use it..???  
#define addr_Ar 0x1234567
int tmp = {0x01};
addr_Ar = tmp[0];
????
   
wwwwwwwwwaaaaaaaaaaaaaaaaaaaaaa
|
For example;
PHP Code:
unsigned char *bytes = (unsigned char*)"\x03\x02\x01\x00";
Where each '\xNN' represents a single byte and 4 of them in the example represent a dword (03 02 01 00 or 50462976).
There's not much you can do with that info without basic knowledge on how datatypes, pointers, winternals and memory work though.. I'm assuming you're working on memory / signature scanning? It's not too advanced topic and I believe you'll learn a lot more the "hard" way than me spoonfeeding you.

.