Порекомендуйте как лучше ЭТО исправить:
class Field
{
int size;
char** field;
public:
Field() // constructor
{
FILE* options = fopen("Options_files\\options.txt","rt");
size = getc(options);
// field = new char[size][size]; //err:array size in new-expression must be constant
}
};