What's the difference between ++5 and 5++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What's the difference between ++5 and 5++

10th Jun 2017, 12:25 PM
VL Songate
VL Songate - avatar
4 Answers
10th Jun 2017, 1:54 PM
Hatsy Rei
Hatsy Rei - avatar
10th Jun 2017, 12:27 PM
Calviղ
Calviղ - avatar
+ 2
++5 its pre-increment works like ( 1+5) and 5++ its post-increment works like (5+1) while the resultant value of both will remain same as the answer of both are same (6).
14th Jun 2017, 1:50 PM
Muhammad Waqas
Muhammad Waqas - avatar
0
a = 5; b = ++a; //a = 6; b = 6, PRE increment, incremented before it's use c =5; d = c++; //c = 6; d = 5, POST increment, incremented after it's use
10th Jun 2017, 4:05 PM
Andrés04_ve
Andrés04_ve - avatar