Key Concepts

One aspect of intelligence is the ability to adjust one's responses to the circumstances. Thus, selection statements are the foundation for developing programs that behave intelligently. In C, the if, if else, and switch statements, along with the conditional operator (?:), implement selection.

The if and if else statements use a test condition to determine which statements are executed. Any non-zero value is treated as true, while zero is treated as false. Typically, tests involve relational expressions, which compare two values, and logical expressions, which use logical operators to combine or modify other expressions.

One general principle to keep in mind is that if you want to test for two conditions, you should use a logical ...

Get C Primer Plus, Fourth Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.