Crebsyn:
My issue is how do i pickup the specific data based on the cycle #. As for a test I could put different integers in, but not sure how to increment the int name. eg
int C1 = 22.34
int C2 = 18.45
If you need decimal places, you shouldn't be using ints.
so when the cycle count = 1 read C1 and compare
on the next loop read C2
but i can't put something like (c1 +cycle) = c2
Sounds like you need an array (and a more descriptive variable name).