Я хочу определить структуру
#include <stdio.h>
#include <stdint.h>
#include <time.h>
//#include "templog.h"
#define DATE_SIZE 5
typedef struct {
int id;
int year;
int month;
int mday;
float min_temp, max_temp;
} tempValue_t
, и данные
tempValue_t temps[DATE_SIZE] =
{ 0, { .tm_year = 2015, .tm_mon = 0, .tm_mday = 1 }, 19.26, 20.76 },
, и я получаю сообщение
error field name not in record or union initializer