C: What is the difference between ++i and i++?

前端 未结 21 2128
伪装坚强ぢ
伪装坚强ぢ 2020-11-21 06:04

In C, what is the difference between using ++i and i++, and which should be used in the incrementation block of a for loop?

21条回答
  •  野性不改
    2020-11-21 06:29

    The Main Difference is

    • i++ Post(After Increment) and
    • ++i Pre (Before Increment)

      • post if i =1 the loop increments like 1,2,3,4,n
      • pre if i =1 the loop increments like 2,3,4,5,n

提交回复
热议问题