+ 2
What is preincrement and postincrement?
3 Respostas
+ 1
pre increment example ~ ++x
post increment example ~
x++
example-
x = 1
y = 2
x++,y++
answer --
x = 2
y = 3
+ 1
If any other problem u can post it
0
pre means first increment and then the exp where as post is vice versa