I'm having some problems creating arrays, anyone know what's wrong?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
int check;
//The while statement effects the value of check
while (...)
{
...
check++;
}
int marks [check];
int marker = 0;
int marker2 = 0;
std::string fintest [check];
std::string nfintest [check];