• Function pointers array location
    Hello, All: I'm trying to define function pointers array: static const void (*Serial_Func_Table[])(char*) = { SI_Func_1, SI_Func_2, SI_Func_3 }; Despite of "const" memory qualifier, this...
  • 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...
  • how to access pointer array located in BANKn?
    Emergency how to access pointer array located in BANKn? //Located at BANK0 code char *pStrArray[] = { "1", "2", "34", }; //Located at BANK0 void LoadString(char *strbuf, const char *pString...
  • A pointer of array (byte *) passing in fixed memory location
    Hi, A C function tries to call a assembly function via the interfacing way of c programs-to-assemnly interface. Founded it's failed and can't use step-into to watch the status of assembly function....
  • 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...