My program is getting complex, i want to save processing, so, i'm replacing ints for shorts, but, i'm a beginner, don't know if use bytes will make anything don't work correctly.
So, in a for with a short contage, it's good to use bytes? Like this:
for (byte i = 0; i < 4; i ++)
{
// Do something.
}
Have any problem to use bytes in a contage less than 256?