• 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...
  • 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...
  • array of union vs union of array
    Hello I am looking for help in understanding the difference between following 2 declarations: 1. union u2 { unsigned int urow2; struct s2 { unsigned int p32 : 1; unsigned int p31 : 1;...
  • array of union vs union of array
    Hello I am looking for help in understanding the difference between following 2 declarations: 1. union u2 { unsigned int urow2; struct s2 { unsigned int p32 : 1; unsigned int p31 : 1;...
  • Placing size of array at start of array
    Hi all, I am working with the TI TUSB3200, trying to modify their example code for our own USB device. USB requires many tables which start with a length byte. I would like to use the sizeof operator...