• 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...
  • array of pointers
    Want to translate the following code (C51) to ARM const char code *txt_unidade_forca[] = { "gf ", "kgf", "N ", "lbf", NULL}; In this case both texts and pointers are placed in CODE. How to do...
  • c51: Pointer to a fucntion in array
    I have seen the application article about function pointer, but after I have use the OVERLAY attribute, the link told me that : Invalid Keyword . In a osddrive.c file, I create an array like below: code...
  • Arrays of Function Pointers
    Dear All, When I am compling the c program below i am getting the error """error C211: call not to a function""" Can anyone help me out with this error ? /**************C FIle*******...
  • Array of function pointers
    I have a constant array of function pointers in code space and I an trying to declare a pointer variable to point to this array and then assign the array address to the pointer variable. The C51 compiler...