The real power of a μc is its ability to read data, make a decision based on that data, and then take the appropriate action(s). Stated differently, a μc has the ability to make decisions based upon the information provided to it from the “outside” world via various input devices. In this chapter, you will learn the various expressions that enable your program to make decisions based upon the state of some set of data.
Relational Operators
As you might guess, a decision is often based upon comparing the values of two or more pieces of data. You make such decisions all the time, probably without ...