| | In the programs so far, the variables and numbers used in any particular statement were all of the same type—for example, int or float. You can write statements that perform operations involving variables of different types. These operations are called mixed-mode operations. In contrast to some other programming languages, C and C++ perform automatic conversions from one type to another. As you progress through the book, additional types will be introduced, and mixing of those types will be discussed. | | |