我需要帮助将值分配给结构中的数组。非常感谢您的帮助:
typedef struct _temp_t {
int16_t _values[4];
} TEMP_T;
void func() {
TEMP_T *temps;
int x = 5;
temps._values[0] = x;
}
我收到一个错误:
...src/rodm/ucdCom.c:512: error: request for member '_values' in something not a structure or union
非常感谢您的帮助!