How many assignment operations take place in the following l
How many assignment operations take place in the following loop code?
Solution
Answer: 4 assignment operations take place in ths loop.
These are
i =1
j=1
j = j * i
and
i = i + 2

How many assignment operations take place in the following loop code?
Answer: 4 assignment operations take place in ths loop.
These are
i =1
j=1
j = j * i
and
i = i + 2
