• two dimentional array(char) problem
    hi ! I want a table from which i can take char data. so i have used char 2-dim array.my initialization is ok. but complier gives following error : MAIN.C(24): error C242: 'array[]': too many...
  • 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...
  • In an array.
    Hello, I want to convert a 14 digit word (which is a float) to the elements of an array.EXample:987654321012.34 to b[0]=9;b[1]=8;b[2]=7...etc..Can anyone please help..Thanks in advance...
  • Arrays
    As a fairly new student in C I am having diffictly with arrays. I have a string of numbers that I am tring to split up into smaller strings to convert them to integers. I have made the code as basic...
  • 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...