Investigate 9.4.
Zero is the value which C interprets as false. How could you use a logical operator so that C would interpret anything except zero as false, such as in an
if statement?
AND in C is with two ampersand signs: &&
OR in C is with two vertical bars: ||
!(...)
if statement?