• 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...
  • Problem with arrays (atmel 8052)
    I've been trying to initialize a pretty big array, but I'm encountering some problems. My first attempt looked like this: const unsigned char font[] = { {0x22,0x3c,0x1c,0x3c,0x3c,0x20,0x1c,0x22...
  • Multidimension array problem
    Hi, Trying to set up a multi dimensional array to act as a circular buffer. Will copy 8 databytes into the array and increment a write_counter. Then in different module when it comes around to service...
  • 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...
  • 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...