Computer Science, asked by alkas8371, 2 months ago

The increment operator
i++ that we use in 'for loop'
is same as writing​

Answers

Answered by rajesh953388
0

Answer:

I=I+1 is the increment operator

Answered by MysterySD
1

Answer:

i++ is also written as i = i + 1

Explanation:

It is a Increment operator which is used as iteration in loop programs.

Similar questions