• uVision Debugger does not display the content of arrays correctly
    When using arrays and structs uVision debugger shows all elements as 0x00 even though the data is correct. I can verify the data is correct by outputing the array or structs contents to the STDIO. ...
  • Array of pointers to structures
    I am getting an error 199 "left side of '->' requires a struct/union pointer. I'm not entirely sure why. Maybe it's obvious, but I've been looking at this code for too long: struct test_struct {...
  • Pointer to array in a structure?
    hello, i have a simple little structure like this unsigned char index; struct tag { unsigned char a[20]; unsigned char b[20]; unsigned char c }; then i declare a pointer like this...
  • accessing array of ptr in the structures
    i've declared a structure as typedef struct elem { int a; void *b[20]; }e; how can i access the array of (void) pointer inside a structure??? e.b ??? - is this correct manner of accessing...
  • External Array of Structure
    Dear All, I am using LPC2138 with LCD display and key pad, program down loader via URAT. I have program and big chunk of messages stored in Array of Structure. Till now, I manage to compile whole thing...