I saw a similar question on here but the answer seemed to match what I already have.
#define POP_SIZE 10;
#define GENE_SIZE 24;
using namespace std;
int main()
{
char population[POP_SIZE][GENE_SIZE];
return 0;
}
The compiler gives me the error "Expected ']'" and "Expected expression". I'm using Xcode 5. Probably a dumb question, but thanks for helping!
stdnamespace exists in your code).