how to make a FOR loop that only rolls over the indexes number 8 through 19 and not the entire array
for (i=8; i<=19;i++)
{
// do stuff
}
how to make a FOR loop that only rolls over the indexes number 8 through 19 and not the entire array
for (i=8; i<=19;i++)
{
// do stuff
}