Click to See Complete Forum and Search --> : avgArray[i] not showing up


Otti06
February 10th, 2010, 08:08 AM
I would appreciate a little help with this I cant figure out why my avgArray[i] is not showing up. Im sure it is something simple but I am still fairly new to programming thanks for you help :).

memeloo
February 11th, 2010, 02:16 PM
you're calling this functions in the wrong order ;)

DspOut();
CalcAvg();

calculate the avg first and then display it then it works :D

CalcAvg();
DspOut();