thanks
Last edited on
Your problem is here:
for (int j = 0; i < count; j++)
You introduce a variable, j, but you are comparing the variable i to count instead of comparing j. It should be this:
for (int j = 0; j < count; j++)
Last edited on
|
//typdef so dont have to use struct everytime
|
Try it i dare ya
Last edited on
Please DON'T delete your question after you've got your answer. It makes this thread incomprehensible, and useless for anyone else to learn from.