I am getting weird results when i try:-
void MyFunction(int a, int b, int c){ }
int y;
void RunTest(){ for(y = 0; y < 8; y++){ MyFunction(0,y,1); }
instead of getting expected results 0-7, i get 20-24,30-32
i cannot figure out why!
When I pass a set value being the 0 and 1, no problem, but any other variable doesn't work!
thanks