View Single Post
Old 04-08-2003, 05:09 PM   #5 (permalink)
joe_bruin
LOAD "*",8,1
 
Join Date: Feb 2003
Location: la.ca.us
Posts: 254
joe_bruin is on a distinguished road
this line is wrong:

int location[length] = {0};

you cannot initialize a stack-dynamic array. try

int location[length];
joe_bruin is offline   Reply With Quote