hi,
is there any way to convert unsigned char to int* on the fly?
like this

unsigned char c = 0x05;

int *a = &(int) c;

this code give me "Must take address of a memory location" error
any ideas?