Integer Representation
Learn common ways of representing integers in computer memory.
We'll cover the following...
Arithmetic expressions
Bash allows us to do calculations on integers. We can apply the following operations: addition, subtraction, multiplication, and division. Besides that, Bash provides bitwise and logical operators. We will use them often when programming.
Bash does ...