• 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 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...
  • 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...
  • 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??? ...