- 339 名前:デフォルトの名無しさん (ワッチョイ d7b3-rZTD) mailto:sage [[ここ壊れてます] .net]
- csv[0].year = 1;
csv[0].low = 1.1; csv[998].year = 9; csv[998].low = 9.9; printf("%d %f\n", csv[0].year, csv[0].low); printf("%d %f\n", csv[998].year, csv[998].low); } void main(void){ CSV_T *csv; csv = realloc(NULL, 1); f(csv); printf("%d %f\n", csv[0].year, csv[0].low); printf("%d %f\n", csv[998].year, csv[998].low); free(csv); }
|

|