• 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...
  • Pointer to 2D array
    On Keil C51 compiler using an already posted solution I get the following warning Mail.c(256): warning C182: pointer to different objects on "pointer = &tab1;" int (*pointer)[100][280]; ...
  • 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 {...
  • Arrays of Function Pointers
    Dear All, When I am compling the c program below i am getting the error """error C211: call not to a function""" Can anyone help me out with this error ? /**************C FIle*******...
  • 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...