• 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...
  • 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...
  • array of pointers to arrays of pointers to string
    Yes, the real problem is, I would like to write an easy to switch, multilingual menu. And I imagine, an array like that should work. But there seems to be some brain blocking in 1. How to define and...