次のコードがあります
#include <stdio.h>
#include <string.h>
int main()
{
char a[10000] = "aaaaaaaa"; // this attribute may vary, so the length isn't going to be constant
int aLength = strlen(a);
int someParameter = aLength /4; // some attribute that's computed dynamically
char table[aLength][someParameter];
}
そして、テーブル宣言でエラーが発生します->「式には定数値が必要です」。どうすればこれを乗り越えることができますか?