Chapter 8: Operators to Use on the Arduino Board
When it comes to using the C language, it is important to spend at least a little bit of time looking at some of the operators that are usable in this language.
There are operators in all of the coding languages that you may want to spend your time on, and while these seem like really basic parts of the coding, they are going to be important to some of the work that you want to get done.
They are small but powerful, and without them, you will not be able to get your code to work.
These operators, in the C language and in other languages, are simply just symbols that are going to be used to help us to perform operations for getting things done as much as possible.
The operators that we are going to use when we focus on this language can include options like logical, bitwise, and arithmetic along with Boolean.
While all of these are important, and there are other operators that we are able to focus on, we are going to narrow it down to the two that you are most likely to find when working on your own Arduino controller, the arithmetic and the Boolean operators.
Let’s dive in and see how this one will work.