• declare variable of struct with flexible array member at compile time
    Hello everybody, is it possible to use a struct with flexible array members and declare a variable of it at compile time? e.g.: struct sFoo { uint32_t const num_Elements; uint8_t baz[];...
  • declare variable of struct with flexible array member at compile time
    Hello everybody, is it possible to use a struct with flexible array members and declare a variable of it at compile time? e.g.: struct sFoo { uint32_t const num_Elements; uint8_t baz[];...
  • declare a variable with flexible array members (c99)
    Hello everyone, in c99 I can make a struct with a flexible array member at the end. Is it possible to create such a variable at compile time? e.g: struct monitoredArray { unsigned int const...
  • declare a variable with flexible array members (c99)
    Hello everyone, in c99 I can make a struct with a flexible array member at the end. Is it possible to create such a variable at compile time? e.g: struct monitoredArray { unsigned int const...
  • ARM IDE 5, cannot assign values to a static array!
    Hello everybody! Please help with such a problem. I try to create a static array of 8-bit values, but when I launch the program, for some reason, irrespective of which values I write, after startup...