I'm trying to make a loop that that will skip a number but has a certain limit to how high it goes...
For example:
I have a for loop:
for (i = 0; i < count; i++ )
{
stuff
}
but lets say I want to skip a number in that loop.
Like if count was 10. The loop will display all things from 0 to 10. What if I want it to skip like when i =5?