What does the ++ sign mean in programming code? [duplicate]

++ is the increment operator

saying

y++

is the same thing as saying

y = y + 1

Browse More Popular Posts

Leave a Comment