重複の可能性:
構造体の動的サイズの配列を作成するにはどうすればよいですか?
私は C が初めてで、オンラインで学習することは本当に役に立ちますが、今は本当に行き詰まっています。サイズ ACcount の構造体 ACout の配列が必要です
typedef struct{
int outcount;
int *lingoout;
double **likegoout;
} ACout;
// int outcount は配列 lingoout のサイズで、likegoout は行数が outcount で列数が 4 の 2 次元配列です
//int outcount が計算され、ACout ごとに異なります。
int ACcount=0; //global, outside main
in main (){
//HOW TO INITIALIZE THE ARRAY OF STRUCTS???
//LIKE THIS?
ACout* ACout_array = (ACout *) calloc (1, sizeof (ACout));
if ( ACout_array == NULL) {
printf("Cannot allocate initial memory for data\n");
exit(1);
}
}
in some function {
ACcount++;
//int lingoout is computed here, as n;
//also array lingout, as lin[n]
//2d array likegoout, as likeout[n][4] is ready here
//how can I write a function to add one more structs to the array?
addarray(ACcount, AC_array);
//how can I put my calculated values to the structs?
AC_array[ACcount]->outcount=n;
AC_array[ACcount]->lingoout=lin;
AC_array[ACcount]->likegoout=likeout;
}
void addACarray (ACout **ACout_array, int ACcount) {
ACout *temp = (ACout*)realloc(*ACout_array, (ACcount * sizeof(ACout)));
if(temp == NULL) {
printf("Cannot allocate growarray memory!\n");
}
else
*ACout_array = temp;
}
ご協力いただきありがとうございます!とても有難い!!! - -ヘレン