Multiplying Numbers
Learn how to multiply the contents of registers and memory cells.
We'll cover the following...
Multiplication
To multiply two numbers, in pseudocode, we write:
(b) * (a) -> (b)
This means that we want the program to multiply the number at the address (location) b
by the number at the address a
.
Multiplication in C and C++
In C and C++, we can write multiplication one of two ways:
Access this course and 1400+ top-rated courses and projects.