Difference between revisions of "Pre and Post Increment and Decrement"

From Catglobe Wiki
Jump to: navigation, search
Line 53: Line 53:
 
<span style="color:#000000;">print(c);&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style="color:#008000;">// 3</span>  
 
<span style="color:#000000;">print(c);&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style="color:#008000;">// 3</span>  
  
[[Category:Data_Types_Literals_and_Variables]]
+
[[Category:Operators]]

Revision as of 06:02, 14 September 2011

Array : The array object

 

++x is pre-increment  and --x is pre-decrement

x++ is post-increment and x-- is post-decrement

 

With ++x and --x:  means x is incremented BEFORE being used.

With x++ and x--:  means x is incremented AFTER being used.

 

Examples

 

number a = 1;

number b;

b = ++a;

print(b);               // 2

print(a);               // 2

b = --a;

print(b);               // 1

print(a);               // 1

 

number c = 3;

number d;

d = c++;

print(d);                  // 3

print(c);                  // 4

d = c--;

print(d);                 // 4

print(c);                 // 3