I am baring with you SorinxEverybody has been in your situation, so no problem
You have
So you play with counter j, but you use counter i too. Counter i for another for loop, not for this!Code:for (j=0;i<NUMBER_OF_GRADES;j++)
So you should play only with counter j in this loop
So replace that with this
Code:for (j=0;j<NUMBER_OF_GRADES;j++)



5Likes
LinkBack URL
About LinkBacks
Everybody has been in your situation, so no problem 




