file misc.c:
//declared at top of file
int spaceused[200][5][5];
function nextLetter()
(line 2865) int spaces[200][5][5];
(line 2871) spaces = spaceused;
(line 2886) spaceused[wordcount] = spaces[num];
misc.c: In function `nextLetter':
misc.c:2871: incompatible types in assignment
misc.c:2886: incompatible types in assignment
can anybody tell me how i would get these operations done?
//declared at top of file
int spaceused[200][5][5];
function nextLetter()
(line 2865) int spaces[200][5][5];
(line 2871) spaces = spaceused;
(line 2886) spaceused[wordcount] = spaces[num];
misc.c: In function `nextLetter':
misc.c:2871: incompatible types in assignment
misc.c:2886: incompatible types in assignment
can anybody tell me how i would get these operations done?