I have declared kbSize as an integer earlier in my code as a global variable, so there's no confusion from replies with it being local, and have a formula that process's its value, but for some reason when my program hits this if statement, it always calls timeStamp(); even when kbSize does not equal any of those values. Sup?
if( kbSize == 2000 || 3000 || 4000 || 5000);
{
timeStamp();
}
the formula is a simple one which gets processed through each loop of the code so that it gets updated.
kbSize = end - beg;