CompuServe Thread

Forum unknown · Help/Announcements

#"C"

1 messages in this thread
#18422From: Jim Nangano/SYSOPMay 11, 1986 10:04 PM
Well, Lattice 3.03 has a major bug in it's array indexing. to access the third element of B array, it would normaly be coded as : i=1; value = B[i+1]; unfortunatly, Lattice really messes that up. To get the same result with Lattice, you would have to code it as : i=1; value = B[i]+1; Hey, I know it doesnt make sense, but it is a bug with 3.03