The counter is know as a A variable that sums itself through
The counter is know as?
a. A variable that sums itself throughout a constant
b. A variable that sums itself throughout a variable
c. Counter = counter + variablr
d. Counter = Counter + 2 * x
The counter is know as?
a. A variable that sums itself throughout a constant
b. A variable that sums itself throughout a variable
c. Counter = counter + variablr
d. Counter = Counter + 2 * x
a. A variable that sums itself throughout a constant
b. A variable that sums itself throughout a variable
c. Counter = counter + variablr
d. Counter = Counter + 2 * x
Solution
The counter is know as?
b) A variable that sums itself throughout a variable.
for(c = 0; c < n; c++)
In the above example variable c it takens as conunter.
Counter is incremented till required number of times which is checked as: c < n
variable n stands for number of times.
