...
/Incrementing and Decrementing Numbers
Incrementing and Decrementing Numbers
Learn how to increment or decrement the contents in registers and memory cells.
Increment and decrement numbers
In pseudocode, incrementing or decrementing the number stored in location (address) a
looks very simple:
(a) + 1 -> (a)
(a) – 1 -> (a)
Increment and decrement in C and C++
In C and C++, we can increment and decrement in three different ways:
Press + to interact
# Incrementa = a + 1;++a;a++;# Decrementb = b – 1;--b;b--;
Increment and decrement in assembly language
In assembly language, we use instructions INC
and DEC
and write:
Press + to interact
incl ainc %eaxdecl adec %eax
We use incl
when we ...