Lookup table in C

To make a lookup table in c,I've tried like this

static code unsigned char T[]={0X01,0X02,0X03};
.But is it possible to prepare one as we do in assembly.
org 3000h
db 01h,02h,03h
i.e assigning some address to the variable T in the example given above.

Thanks,
Lina

More questions in this forum