This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

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

0