• declaration of two dimensional arrays(character
    actually this is in reference to the thread that i have already created about declaring two dimensional arrays I have configured the the model to Xdata and the change that i have made is only of declaring...
  • malloc and two dimensional array ( char * * )
    I want to allocate memory which I can use as a two dimensional array. But the following code is not working unsigned char xdata ** memo; unsigned char i = 0; // n is number of rows // size is number...
  • Pass 1 dimensional array in function
    Passing any arrays by value or pointer does not work very well. I can try integrating an array into a structure, but that is not how I would do it. if I have: frame( unsigned char &mbrtubuf,...
  • Multi-dimensional arrays as parameters to functions
    I apologize for the ignorance. I have a function void Color_send(uint8_t (*color)[3], uint16_t len) The function have as parameter for RGB of ligth any as uint8_t light[100][3]; Solve...
  • Pass 2 dimensional array in function
    Does it possible to pass a 2 dimensional array to a funciton? does it accepts?