It doesn't get easier. I used to just copy the programs from other people. My final was to right 100 programs. I turned in 60 copied ones. //content.invisioncic.com/y282845/emoticons/laugh.gif.48439b2acf2cfca21620f01e7f77d1e4.gif I really expected to fail.Haha, well it's nearing the end of the semester and it's getting weirder that's for sure.
This is not the error, but it is neater, what is line 44?int fill;
for (fill=0; fill
dataArray[fill]=0;
I dont have a compiler, but try this:
for (int fill=0; fill
dataArray[fill]=0;
Initialize it within the for loop, not outside...even if that is not the error, it is neater coding.