• Generic Pointer: Memory Type Identification
    Hi, how can I identify a memory type of any generic pointer in C51 code? Thanks.
  • pointer of pointer type??
    what is different form, follow as: (1)code XBYTE *AA[]={...}; (2)code void (*BB[])(void)={...};
  • How to determine a pointer type?
    If I have declare a generic pointer [char *test] in C; How do I determine the pointer type in runtime? By checking the first byte of the pointer or is there any other functions doing this? Thanks...
  • Can pointer types be cast?
    Here is my problem, i have several simmilar structue definitions (containers for messages) struct FIRST{ unsigned char Word_Pos[8] unsigned char Data[8] unsigned char Msg_Len }; struct FIRST...
  • C51: Pointer to array type
    I have defined a type for objects we use. The details of the type should not be relevant for the users of the type, so I am "hiding" it behind a typedef. As it happens, this type is currently implemented...