I have the following code, the arrays are global variables.
#define MEMORY 64000;
#define NUMFRAMES 6400;
int mem[MEMORY];
int frames[NUMFRAMES];
I was pretty sure this should work as I don't see why it shouldn't but I am getting "parse error before ';' token" for both array declarations.
Although if I declare the arrays using 64000 instead of MEMORY it works.