Can someone pls enlighten me on post increment and pre increment operators. | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

Can someone pls enlighten me on post increment and pre increment operators.

29th May 2020, 4:56 AM
Victor Emmanuel
Victor Emmanuel - avatar
1 ответ
+ 3
The main point is that ++a increments the value and immediately returns it. a++ also increments the value (in the background) but returns unchanged value of the variable - what looks like it is executed later. Hope you understand the concept. Rock the code🤟🤟
29th May 2020, 5:01 AM
Piyush
Piyush - avatar