• 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...
  • Branch to function pointer array
    Hopefully someone knows... I'm writing a jump table for a number of functions. The jump table located '__at' a location in memory contains __asm instructions to branch to all required functions defined...
  • How to debug a pointer to an array?
    Using the watch or memory debug windows, does anyone know of a way to view a pointer as if it were an array? i.e. uint8_t myArray[4]; uint8_t* myPtr = myArray; Normally, you'll only be able...
  • Locating Arrays of Pointers
    I want to put an array of pointers into IDATA as my real target has no off chip RAM. If I assign them in the following way they do not locate properly. int idata *ptr[20]; Any suggestions??? ...
  • Pointer to 2D array
    On Keil C51 compiler using an already posted solution I get the following warning Mail.c(256): warning C182: pointer to different objects on "pointer = &tab1;" int (*pointer)[100][280]; ...