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

array to array

for example i have got three constant array

code unsigned char a_0[]={0x54,0x25,0x11,0xff,0x21};
code unsigned char a_1[]={0x51,0x45,0x55,0x85};
code unsigned char a_2[]={0x24,0x47};

in program i want to use this costant similar this;
send(a[0]);
or i=2;
send(a[i]);

how can i do this, all my constant have got different size

0