• Pass 2 dimensional array in function
    Does it possible to pass a 2 dimensional array to a funciton? does it accepts?
  • Pass 2 dimensional array in function
    Does it possible to pass a 2 dimensional array to a funciton? does it accepts?
  • 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...
  • 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...
  • 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...