How to validate n++ against ++n? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

How to validate n++ against ++n?

My question is, how could I print or really know the value of variable "num" when ++ num? I mean, num++ is different to ++num, but, how could I validate it (++num increments and assign the value, but num++ is the opposite. Is there any way to validate it?)

30th Aug 2016, 4:08 PM
Rafael Figueroa
Rafael Figueroa - avatar
1 ответ
0
What do you mean by 'validate'? As far as I know, ++num ans num++ are identical if you are just incrementing and not immediately taking the incremented value. If so, num++ is needed, if not then I believe ++num is kinda more effective (not that it matters).
6th Sep 2016, 7:47 PM
Norbivar
Norbivar - avatar