Operator Description Example
++X Pre-Increment x = 5; ++x; 6
X++ Post-Increment x = 5; x++; 5
--X Pre-Decrement x = 5; --x; 4
X-- Post-Decrement x = 5; x--; 5
Coderraj is the global online platform and circle for programmers to learn, communicate, share their knowledge and growth their careers.
Copyright ©2022 coderraj.com. All Rights Reserved.