Thread
:
Integer array help
View Single Post
04-08-2003, 05:09 PM
#
5
(
permalink
)
joe_bruin
LOAD "*",8,1
Join Date: Feb 2003
Location: la.ca.us
Posts: 254
this line is wrong:
int location[length] = {0};
you cannot initialize a stack-dynamic array. try
int location[length];
joe_bruin
View Public Profile
Find More Posts by joe_bruin