• 2 dimentional arrays
    Has anyone found a way to pass 2 dimentional arrays to a function? My arrays are stored in code and I need to pass them to a function to display them. Gary Martin
  • malloc and two dimensional array ( char * * )
    I want to allocate memory which I can use as a two dimensional array. But the following code is not working unsigned char xdata ** memo; unsigned char i = 0; // n is number of rows // size is number...
  • Char array and .data section
    Note: This was originally posted on 11th January 2011 at http://forums.arm.com Hi, I've been trying to use string literals in my C code, however I'm having a really odd problem. I've condensed my code...
  • comparing two arrays-values
    hi, i have a xdata unsigned char* a_1[210] and unsigned char* a_2[210] Thea are including string value like "21:32 04:34 xyz" how can i compare this arrays? what i mean is something like...
  • Two Chars for a Counter vs 1 Int?
    I have a case where I need to count up a variable for more than 255 for a unsigned char. I have a friend who works on 8-bit MCUs and swears that you should not use anything but 8 bit data types ...