This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

pointer of pointer type??

what is different form, follow as:

(1)code XBYTE *AA[]={...};

(2)code void (*BB[])(void)={...};

Parents
  • The first one is a stored in code memory array of pointers to XDATA data type.
    The second is a stored in code memory array of pointers to functions with no arguments and no return value.
    Any decent book on the C programming language should give you answers to questions like these.

    - mike

Reply
  • The first one is a stored in code memory array of pointers to XDATA data type.
    The second is a stored in code memory array of pointers to functions with no arguments and no return value.
    Any decent book on the C programming language should give you answers to questions like these.

    - mike

Children